AARGHGHHH

This commit is contained in:
Yuki 2015-07-20 04:16:31 +05:30
parent d8bf34213a
commit 08d582da92
1 changed files with 2 additions and 2 deletions

View File

@ -16,9 +16,9 @@ module Paperclip
if target.cropping?
case @attachment.name
when :profile_picture
['+repage', '-crop', "'#{target.crop_w.to_i}x#{target.crop_h.to_i}+#{target.crop_x.to_i}+#{target.crop_y.to_i}'"]
['-auto-orient', '-strip', '+repage', '-crop', "'#{target.crop_w.to_i}x#{target.crop_h.to_i}+#{target.crop_x.to_i}+#{target.crop_y.to_i}'"]
when :profile_header
['+repage', '-crop', "'#{target.crop_h_w.to_i}x#{target.crop_h_h.to_i}+#{target.crop_h_x.to_i}+#{target.crop_h_y.to_i}'"]
['-auto-orient', '-strip', '+repage', '-crop', "'#{target.crop_h_w.to_i}x#{target.crop_h_h.to_i}+#{target.crop_h_x.to_i}+#{target.crop_h_y.to_i}'"]
end
end
end