Question

I am using Paperclip with Rails4. I have the following image

enter image description here

Now i want to resize and Crop the image but its getting cropped and orientation of the image is getting displaced like below

enter image description here

:photo,
    :path => ":rails_root/public/system/:attachment/:id/:style/:filename",
    :url => "/system/:attachment/:id/:style/:filename",
    :styles => {
        :small => { :geometry => "100x100!" },
        :medium => { :geometry => "500x500!"}
}
Was it helpful?

Solution

Check out ImageMagic resize docs. You probably need to use 100x100# instead of 100x100!

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top