negos_app/config/initializers/carrierwave.rb
Nicolas Bally 772e87ffb7 initial
2015-11-14 00:08:54 +01:00

12 lines
248 B
Ruby

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