RMagick:缩放并调整缩略图的图像大小

问题描述 投票:2回答:4

我想调整图像尺寸/缩放。原稿的尺寸不一样,例如300x200或512x600。我想将图像调整为100x100,但不要从图像中裁剪任何东西或更改比例。理想情况下,图像将首先将长边缘缩放为100(长宽比),然后用白色填充较小的边缘。

 .---------.
 |- - - - -|
 |  IMAGE  |
 |- - - - -|
 '---------'

我不使用回形针或Rails,仅使用RMagick。

image rmagick
4个回答
6
投票

我已经完成了将调整大小后的图像与新的100x100图像合并的操作。当然,这不是最好的方法,但是它可以工作:

img = Magick::Image.read("file.png").first
target = Magick::Image.new(100, 100) do
  self.background_color = 'white'
end
img.resize_to_fit!(100, 100)
target.composite(img, Magick::CenterGravity, Magick::CopyCompositeOp).write("file-small.png)

1
投票

玩了一段时间后,我得到了Fu86的合成技巧,如下所示:

img = Image.read("some_file").first().resize_to_fit!(width, height)
target = Image.new(width, height) do
    self.background_color = 'white'
end
target.composite(img, CenterGravity, AtopCompositeOp).write("some_new_file")

AtopCompositeOp似乎比CopyCompositeOp更好,由于某种原因,它使我的背景部分变成了黑色。


1
投票
image = Magick::Image.read("filename").first
resized = image.resize_to_fit(width, height)     # will maintain aspect ratio, so one of the resized dimensions may be less than the specified dimensions
resized.background_color = "#FFFFFF"             # without a default, background color will vary based on the border of your original image
x = (resized.columns - width) / 2                # calculate necessary translation to center image on background
y = (resized.rows - height) / 2
resized = resized.extent(width, height, x, y)    # 'extent' fills out the resized image if necessary, with the background color, to match the full requested dimensions. the x and y parameters calculated in the previous step center the image on the background.
resized.write("new_filename")

注意:在heroku上(截至本文发布时,它使用imagemagick 6.5.7-8,我需要将x和y转换乘以-1(并发送正数)。版本6.8.0-10预期为负数。


0
投票

似乎您想使用change_geometry ...

© www.soinside.com 2019 - 2024. All rights reserved.