使用Paperclip进行简单裁剪

时间:2009-06-19 11:42:23

标签: ruby-on-rails ruby paperclip crop

我想使用Paperclip在上传时剪裁图像,以从原始图片的中心获得方形拇指。我发现文档中的方法似乎完全符合我的要求:

transformation_to(dst, crop = false)

问题是我无法弄清楚在哪里使用这种方法。在这里简单地传递一些东西会很棒:

  has_attached_file :picture, 
                    :styles => { :medium => "600x600>", :thumb => "something here" }

1 个答案:

答案 0 :(得分:69)

您只需要使用#而不是>作为参数:

has_attached_file :picture, :styles => { :thumb => "200x200#" }