主要用到了 MDN - drawImage
Html
Image: <br />
<img src="https://i.stack.imgur.com/I4jXc.png" /><br />
Canvas: <br />
<canvas id="canvas" width="275px" height="95px"></canvas>
Js
const image = new Image(),
canvas = document.getElementById('canvas'),
ctx = canvas.getContext('2d');
image.src = 'https://i.stack.imgur.com/I4jXc.png';
image.addEventListener('load', () => {
ctx.drawImage(
image,
70,
20, // Start at 70/20 pixels from the left and the top of the image (crop),
50,
50, // "Get" a `50 * 50` (w * h) area from the source image (crop),
0,
0, // Place the result at 0, 0 in the canvas,
100,
100
); // With as width / height: 100 * 100 (scale)
});
另外一种比较巧妙的方法
function cutArea(fromImage, x, y, width, height) {
const cut = document.createElement('canvas');
cut.width = width;
cut.height = height;
const ctx = cut.getContext('2d');
ctx.drawImage(fromImage, -x, -y);
return cut;
}
练习测试
可以在这练习
https://www.w3schools.com/tags/tryit.asp?filename=tryhtml5_canvas_drawimage2