8
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

手軽にcanvasをキャプチャする。CCapture.js

Last updated at Posted at 2017-09-03

まずは ccapture.js からDownload ZIPしてください。

今回は、CCapture.all.min.jsを使用します。

htmlに追加します。


<script src="CCapture.all.min.js"></script>

jsに追加します。


// formatは、WebM, gif, png, jpgがあります。
// framerateは、そのまま記録したいフレームレートです。
// verboseは、コンソールに情報を出してくれます。
// nameは、出力するファイルの名前です。
// timeLimitは、記録が開始されて止まるまでの時間(秒)です。
var capturer = new CCapture({
  format: 'webm',
  framerate: 60,
  verbose: true,
  name: 01,
  timeLimit: 20
});

var canvas = document.getElementById("element").appendChild( renderer.domElement );

// キャプチャ開始。
capturer.start();

// レンダー内に記述。
function render() {
  requestAnimationFrame(render);
  renderer.render( scene, camera );
  capturer.capture(canvas);
}

後は実行するとキャプチャされます。

macのsafariでエラーが出る場合があるようです。chrome等で試してみてください。
three.js用に書いてあります。メモに近いので短い記事でした。

8
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?