Skip to content

Instantly share code, notes, and snippets.

@mariovisic
Created May 11, 2011 05:39
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save mariovisic/965983 to your computer and use it in GitHub Desktop.
Save mariovisic/965983 to your computer and use it in GitHub Desktop.
# app/uploaders/avatar_uploader.rb
process :fix_exif_rotation
process :strip
process :resize_to_fill => [1024, 768]
process :quality => 90 # Percentage from 0 - 100
# config/initializers/carrierwave_initializer.rb
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
# Strips out all embedded information from the image
def strip
manipulate! do |img|
img.strip!
img = yield(img) if block_given?
img
end
end
# Reduces the quality of the image to the percentage given
def quality(percentage)
manipulate! do |img|
img.write(current_path){ self.quality = percentage }
img = yield(img) if block_given?
img
end
end
end
end
@ahx
Copy link

ahx commented Jan 11, 2013

I noted that when using #strip! some images with exotic color profiles got a bit darker.

@PikachuEXE
Copy link

Is there a version for MiniMagick? :)

@sunny0425
Copy link

Really cool! for MiniMagick, should change the auto_orient! to auto_orient

@phillbaker
Copy link

FYI, how to do this in just an uploader class: http://stackoverflow.com/a/4767021

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment