如何更改imageCapture.takePhoto()中的大小?

时间:2019-01-16 23:14:21

标签: javascript getusermedia navigator

我需要从imageCapture.takePhoto()中更改照片的大小,但是它不起作用。我需要将大小更改为320高度X 240宽度,但结果是640高度X 480宽度。

在这里您可以找到文档。https://developer.mozilla.org/en-US/docs/Web/API/ImageCapture/takePhoto

navigator.getUserMedia(
{
 video:true,
 audio:true
},
function(localMediaStream) {
 const track = localMediaStream.getVideoTracks()[0];
 let imageCapture = new ImageCapture(track);
 imageCapture.takePhoto(
   {imageHeight:320,imageWidth:240}).then(function(blob) {
    //do somethingh with blob (photo)
 }).catch(function(error) {
  console.log(error);
 });
},
function(err) {
  console.log(err);
});

1 个答案:

答案 0 :(得分:1)

似乎您需要先检查ImageCapture的 PhotoCapabilities ,然后才能使用 ImageCapture.takePhoto(photoSettings) photoSettings 参数。

为此,您将调用 ImageCapture getPhotoCapabilities()方法,然后检查设置为imageHeightimageWidth的范围。

const capture = new ImageCapture(track);
const { imageWidth, imageHeight } = await capture.getPhotoCapabilities();
const width = setInRange(required_width, imageWidth);
const height = setInRange(required_height, imageHeight);
const photoSettings = (width && height) ? {
  imageWidth: width,
  imageHeight: height
} : null;
const pic = await capture.takePhoto(photoSettings);

function setInRange(value, range) {
  if(!range) return NaN;
  let x = Math.min(range.max, Math.max(range.min, value));
  x = Math.round(x / range.step) * range.step; // take `step` into account
  return x;
}

https://jsfiddle.net/bLrvyet5/

但是很可能发生您所需的宽度和高度不在这些 MediaSettingsRange 中,因此您可能需要在画布上自行调整此图像的大小。