Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Simple cropping with Paperclip

I would like to crop images on upload using Paperclip to get square thumbs from the center of the original picture. I find out a method in documentation that seems to do exactly what I want:

transformation_to(dst, crop = false)

The problem is that I can't figure out where to use this method. It would be great to simply pass something as a parameter here:

  has_attached_file :picture,                      :styles => { :medium => "600x600>", :thumb => "something here" }
like image 405
collimarco Avatar asked Jun 19 '09 11:06

collimarco


1 Answers

You only need to use # instead of > as a parameter:

has_attached_file :picture, :styles => { :thumb => "200x200#" }
like image 161
collimarco Avatar answered Sep 24 '22 19:09

collimarco