I have paperclip in Rails (3) working with simple cropping, for example the blow code makes a simple crop of the thumbnail:
has_attached_file :image, :styles => { :thumb => "90x90#" }, :default_style => :thumb
However I was wondering how do you crop a very specific area of an image; lets say you have an x and y coordinate to start from and then a width and height of the crop.
How do you go about passing a complex style like this in?
Check
{size}{offset}combination here:http://www.imagemagick.org/script/command-line-processing.php#geometry
Example where numbers are width, height, x, y:
Paperclip parses the style options string and it is limited to resizing and cropping. Complex ImageMagick options work if they are being passed as
:convert_options, because they are added toconvertcommand without modification.Links to thumbnail processor source code and wiki page: