This commit is contained in:
Marc-Andre Lafortune 2014-01-29 09:23:47 -05:00
parent c9c0223726
commit e0ba178869

View File

@ -469,11 +469,9 @@ class FastImage
parse_exif
if @exif_orientation && @exif_orientation >= 5
return [@exif_height, @exif_width]
[@exif_height, @exif_width]
else
return [@exif_width, @exif_height]
[@exif_width, @exif_height]
end
raise CannotParseImage
end
end