似乎这应该是一个简单的问题,但在http://www.imagemagick.org/script/command-line-processing.php?ImageMagick=lj6pre8q2iautc3ch6nuph1fc2#geometry使用文档后无法使其正常工作。
所有我想要的是让我的图像具有设定的宽度并设置高度为450px宽和300px高度,同时保持其一些宽高比。哪种风格可以实现这一目标?
答案 0 :(得分:1)
这应该有帮助
has_attached_file :image,
:styles => {
:thumb => "125x100#",
:small => "450x300>",
:large => "600x600>"
},
:url => "/path/to/:id/:style/:basename.:extension",
:path => ":rails_root/path/to/:id/:style/:basename.:extension"