属性:
drawImage:
img,10,10,50,277
img,10,10,100,277
img,10,10,200,277
img,10,10,220,277
img,10,10,250,277
img,10,10,300,277
img,10,10,400,277
画布:
your browser does not support the canvas tag
Code:
var img=document.createElement('img');
img.src='img_the_scream.jpg';
img.onload = function () {
var c=document.getElementById('myCanvas');
var ctx=c.getContext('2d');
ctx.drawImage(
img,10,10,220,277)
;
}
点击上面的属性值来查看结果
FreeW3C.com
-亲自试试