裁剪拇指时使用 > 或 # 有什么区别:

例子:

has_attached_file :image, :styles => {:small => "100x100#"}


has_attached_file :image, :styles => {:small => "100x100>"}

如何获得最大高度为 100 像素但宽度可变(以保持纵横比)的拇指?

谢谢

黛布

最佳答案

Paperclip 在幕后使用 ImageMagick,这里是完整 ImageMagick 几何设置的链接(您在 :small 缩略图定义中放置的内容):

http://www.imagemagick.org/script/command-line-processing.php#geometry

听起来您想要:“给定高度,自动选择宽度以保持纵横比。”

has_attached_file :image, :styles => {:small => "x100"}

关于ruby-on-rails - Rails : Paper Clip Cropping Syntax,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3256459/

10-13 05:29