HTML5 canvas scale() 方法

实例

放大到 200%

Your browser does not support the HTML5 canvas tag.

JavaScript:

var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");
ctx.strokeRect(5,5,25,15);
ctx.scale(2,2);
ctx.strokeRect(5,5,25,15);

Internet Explorer 9、Firefox、Opera、Chrome 以及 Safari 支持 scale() 方法。

注释:Internet Explorer 8 <canvas> 元素。

scale()

注释: scale(2,2)位置。

JavaScript 语法:

context.scale(scalewidth,scaleheight);

参数值

参数 描述
scalewidth 图的宽度 (1=100%, 0.5=50%, 2=200%, 依次类推)
scaleheight 图的高度 (1=100%, 0.5=50%, 2=200%, etc.)

更多实例

200%到 200%放大到 200%矩形:

Your browser does not support the HTML canvas tag.

JavaScript:

var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");
ctx.strokeRect(5,5,25,15);
ctx.scale(2,2);
ctx.strokeRect(5,5,25,15);
ctx.scale(2,2);
ctx.strokeRect(5,5,25,15);
ctx.scale(2,2);
ctx.strokeRect(5,5,25,15);