2016-02-16 21:09:48 +01:00

12 lines
248 B
Ruby
Executable File

module CarrierWave
module RMagick
# Rotates the image based on the EXIF Orientation
def fix_exif_rotation
manipulate! do |img|
img.auto_orient!
img = yield(img) if block_given?
img
end
end
end
end