ChatGPT解决这个技术问题 Extra ChatGPT

缩放图像以适合画布

我有一个允许用户上传图像的表单。

加载图像后,我们对其进行一些缩放,以便在将其传递回服务器之前减小其文件大小。

为此,我们将其放置在画布上并在那里进行操作。

此代码将在画布上渲染缩放的图像,画布大小为 320 x 240px:

ctx.drawImage(img, 0, 0, canvas.width, canvas.height)

... 其中 canvas.width 和 canvas.height 是图像高度和宽度 xa 缩放因子,基于原始图像的大小。

但是当我去使用代码时:

ctx.drawImage(img, 0, 0, canvas.width, canvas.height, 0, 0, canvas.width, canvas.height

...我只在画布上获得部分图像,在这种情况下是左上角。尽管实际图像尺寸大于 320x240 画布尺寸,但我需要将整个图像“缩放”以适合画布。

所以对于上面的代码,宽度和高度都是 1142x856,因为这是最终的图像尺寸。我需要保持该大小以在提交表单时将其传递给服务器,但只希望它的较小视图出现在用户的画布中。

我在这里想念什么?谁能指出我正确的方向?

提前谢谢了。


G
GameAlchemist

您在第二次调用中犯了错误,将源的大小设置为目标的大小。无论如何,我敢打赌,您希望缩放后的图像具有相同的纵横比,因此您需要计算它:

var hRatio = canvas.width / img.width    ;
var vRatio = canvas.height / img.height  ;
var ratio  = Math.min ( hRatio, vRatio );
ctx.drawImage(img, 0,0, img.width, img.height, 0,0,img.width*ratio, img.height*ratio);

我还假设您想使图像居中,因此代码为:

function drawImageScaled(img, ctx) {
   var canvas = ctx.canvas ;
   var hRatio = canvas.width  / img.width    ;
   var vRatio =  canvas.height / img.height  ;
   var ratio  = Math.min ( hRatio, vRatio );
   var centerShift_x = ( canvas.width - img.width*ratio ) / 2;
   var centerShift_y = ( canvas.height - img.height*ratio ) / 2;  
   ctx.clearRect(0,0,canvas.width, canvas.height);
   ctx.drawImage(img, 0,0, img.width, img.height,
                      centerShift_x,centerShift_y,img.width*ratio, img.height*ratio);  
}

您可以在此处的 jsbin 中看到它:http://jsbin.com/funewofu/1/edit?js,output


谢谢!我将 Math.min() 更改为 Math.max() 以缩放和裁剪图像以适合画布。这很有帮助!
但是当我从小尺寸生成大图像时,这会生成模糊图像。它变得模糊..任何解决方案?请
非常感谢@gamealchemist。通读这本书帮助我了解了如何获得按比例缩小的图像,而我自己要花很长时间才能弄清楚这一点。谢谢!
佚名

提供源图像 (img) 大小作为第一个矩形:

ctx.drawImage(img, 0, 0, img.width,    img.height,     // source rectangle
                   0, 0, canvas.width, canvas.height); // destination rectangle

第二个矩形将是目标大小(将缩放到什么源矩形)。

2016/6 更新:有关纵横比和定位(ala CSS 的“覆盖”方法),请查看:
Simulation background-size: cover in canvas


这是完美的,+1。快速点 - 您缺少 drawImage() 函数上的右括号。有点搞砸我的强迫症;)
非常适合我的需要。当表单边距发生变化时,它使我不必摆弄我的图像文件的大小/比例。谢谢 ;)
C
Coder_Naveed

我猜你希望图像被缩放到更小的尺寸,而不会丢失尺寸的比例。我有一个解决方案。

var ratio = image.naturalWidth / image.naturalHeight;
var width = canvas.width;
var height = width / ratio;
ctx.drawImage(image, 0, 0, width, height);

该比例将保持不变。在画布上绘制的图像将具有相同的比例。如果图像的高度很长,您可以使用 if 循环,您可以将 canvas.width 替换为其他宽度


W
Wilson

您可以在调用 ctx.drawImage 之前调用 ctx.scale()

var factor  = Math.min ( canvas.width / img.width, canvas.height / img.height );
ctx.scale(factor, factor);
ctx.drawImage(img, 0, 0);
ctx.scale(1 / factor, 1 / factor);

这应该保持纵横比。