javascript-html2canvas-如何定义顶部,左侧,底部,右侧以进行自动裁剪?

我有一个1280×768页面.下面的代码正在制作1280×768的全页快照,但是我需要忽略顶部10px,底部10px,底部10px,右侧10px.

您可以在document.body.appendChild(canvas)之前或之后进行裁剪/缩放吗? ?使用CSS3或JS左右?

window.takeScreenShot = function() {
    html2canvas(document.getElementById("top"), {
        onrendered: function (canvas) {
            document.body.appendChild(canvas);
        },
        width:1280,
        height:768
    });
};

解决方法:

您可以简单地使用屏幕外画布,在其上绘制具有所需偏移量的渲染画布.

这是一个快速编写的功能,可能无法满足所有要求,但至少可以给您一个提示:
 请注意,它使用latest html2canvas version (0.5.0-beta4),现在返回一个Promise.

function screenshot(element, options = {}) {
  // our cropping context
  let cropper = document.createElement('canvas').getContext('2d');
  // save the passed width and height
  let finalWidth = options.width || window.innerWidth;
  let finalHeight = options.height || window.innerHeight;
  // update the options value so we can pass it to h2c
  if (options.x) {
    options.width = finalWidth + options.x;
  }
  if (options.y) {
    options.height = finalHeight + options.y;
  }
  // chain h2c Promise
  return html2canvas(element, options).then(c => {
    // do our cropping
    cropper.canvas.width = finalWidth;
    cropper.canvas.height = finalHeight;
    cropper.drawImage(c, -(+options.x || 0), -(+options.y || 0));
    // return our canvas
    return cropper.canvas;
  });
}    

然后这样称呼它

screenshot(yourElement, {
  x: 20, // this are our custom x y properties
  y: 20, 
  width: 150, // final width and height
  height: 150,
  useCORS: true // you can still pass default html2canvas options
}).then(canvas => {
  //do whatever with the canvas
})

由于stacksnippets®在其框架上使用了一些强大的安全性,因此我们无法在此处进行实时演示,但是您可以在此jsfiddle中找到一个演示.

哦,对于那些想要支持旧html2canvas版本的ES5版本的人,您只需要将裁剪函数包装在onrendered回调中,或者对于懒惰的回调,这里是a fiddle.

上一篇:javascript-html2canvas-错误-对象HTMLCanvasElement


下一篇:javascript-捕获iframe的屏幕截图-html2canvas无法正常工作