我正在使用RMagick并希望将我的图像调整为100px的固定宽度,并按比例缩放高度。例如,如果用户要上传300x900px,我希望将其缩放到100x300px。
答案 0 :(得分:47)
将其放入上传器文件中:
class ImageUploader < CarrierWave::Uploader::Base
version :resized do
# returns an image with a maximum width of 100px
# while maintaining the aspect ratio
# 10000 is used to tell CW that the height is free
# and so that it will hit the 100 px width first
process :resize_to_fit => [100, 10000]
end
end
此处的文档和示例:http://www.imagemagick.org/RMagick/doc/image3.html#resize_to_fit
请注意,如果图片小于100像素,resize_to_fit
会放大图片。如果您不希望它这样做,请将其替换为resize_to_limit
。
答案 1 :(得分:16)
我用
process :resize_to_fit => [100, 10000]
使用10000
或任何非常大的数字让Carrierwave知道高度是免费的,只需调整宽度即可。
@iWasRobbed:我不认为这是正确的解决方案。根据您粘贴的关于resize_to_fit
的链接:The maximum height of the resized image. If omitted it defaults to the value of new_width.
因此,在您的情况下process :resize_to_fit => [100, nil]
相当于process :resize_to_fit => [100, 100]
,这并不能保证您始终可以获得100px的固定宽度
答案 2 :(得分:12)
实际上不是更好的解决方案:
process :resize_to_fit => [100, -1]
这样你就不必限制身高了
编辑:刚刚意识到这只适用于MiniMagick,对于RMagick,你似乎别无选择,只能在高度上添加一个大号