使用>之间的区别或#在裁剪拇指时:
示例:
has_attached_file :image, :styles => {:small => "100x100#"}
has_attached_file :image, :styles => {:small => "100x100>"}
如何获得最大高度为100px但宽度可变的拇指(以保持纵横比)?
由于
德布
答案 0 :(得分:10)
Paperclip在封面下使用ImageMagick,这里是完整ImageMagick几何设置的链接(你在你的小缩略图定义中添加了什么):
http://www.imagemagick.org/script/command-line-processing.php#geometry
这听起来像你想要的:“给定高度,自动选择宽度以保持纵横比。”
has_attached_file :image, :styles => {:small => "x100"}
答案 1 :(得分:0)
has_attached_file :photo,
:styles => {
:thumb=> "100x100#",
:large => "400x400>" }