ImageCapture.grabFrame() - Web APIs 编辑
The grabFrame()
method of the ImageCapture
interface takes a snapshot of the live video in a MediaStreamTrack
and returns a Promise
that resolves with a ImageBitmap
containing the snapshot.
Syntax
const bitmapPromise = imageCapture.grabFrame()
Return value
A Promise
that resolves to an ImageBitmap
object.
Example
This example is extracted from this Simple Image Capture demo. It shows how to use the Promise
returned by grabFrame()
to copy the returned frame to a <canvas>
element. For simplicy it does not show how to instantiate the ImageCapture
object.
var grabFrameButton = document.querySelector('button#grabFrame');
var canvas = document.querySelector('canvas');
grabFrameButton.onclick = grabFrame;
function grabFrame() {
imageCapture.grabFrame()
.then(function(imageBitmap) {
console.log('Grabbed frame:', imageBitmap);
canvas.width = imageBitmap.width;
canvas.height = imageBitmap.height;
canvas.getContext('2d').drawImage(imageBitmap, 0, 0);
canvas.classList.remove('hidden');
})
.catch(function(error) {
console.log('grabFrame() error: ', error);
});
}
Specifications
Specification | Status | Comment |
---|---|---|
MediaStream Image Capture The definition of 'grabFrame()' in that specification. | Working Draft | Initial definition. |
Browser compatibility
BCD tables only load in the browser
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论