12 lines
248 B
Ruby
Executable File
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 |