From 08d582da9232590bd816a502c54882d748e68c9a Mon Sep 17 00:00:00 2001 From: Yuki Date: Mon, 20 Jul 2015 04:16:31 +0530 Subject: [PATCH] AARGHGHHH --- lib/paperclip_processors/cropper.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/paperclip_processors/cropper.rb b/lib/paperclip_processors/cropper.rb index 547ef810..ddbb076c 100644 --- a/lib/paperclip_processors/cropper.rb +++ b/lib/paperclip_processors/cropper.rb @@ -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