在提交表单前调整图像大小 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 );
广告