문제

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!"}
}
도움이 되었습니까?

해결책

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

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top