在提交表单之前调整图像大小 HTML5
要在提交表单之前调整图像大小,需要使用 drawImage() 方法。
调整原始图像的比例,并在画布上的 [0,0] 处绘制调整后的比例。
context.drawImage( img, 0,0,img.width,img.height, 0,0,myWidth,UseHeight );
上面,我们看到了以下内容
在这里,
var myWidth = Math.floor( img.width * Scale ); var myHeight = Math.floor( img.height * Scale );
并且,
var x = Math.floor( ( world.width - myWidth) / 2 ); var y = Math.floor( ( world.height - myHeight) / 2 );
广告