案例:html/html5 案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<canvas id="myCanvas" width="300" height="150" style="border:1px solid #d3d3d3;">
6
Your browser does not support the HTML5 canvas tag.
7
</canvas>
8
9
<script>
10
var c=document.getElementById("myCanvas");
11
var ctx=c.getContext("2d");
12
ctx.fillStyle="green";
13
ctx.fillRect(10,10,50,50);
14
15
function copy()
16
{
17
var imgData=ctx.getImageData(10,10,50,50);
18
ctx.putImageData(imgData,10,70);
19
}
20
</script>
21
22
<button onclick="copy()">复制</button>
23
24
</body>
25
</html>
26