CarrierWave::Processing
Additional processing support for MiniMagick and RMagick. These are processors that I've been using in multiple projects so I decided to extract those as a gem.
Installation
Add this line to your application's Gemfile:
gem 'carrierwave-processing'
And then execute:
$ bundle
Or install it yourself as:
$ gem install carrierwave-processing
Usage
This gem add several useful methods to CarrierWave processing RMagick and MiniMagick modules: quality
and strip
.
To use those, you should include specified module (RMagick or MiniMagick) into your uploader and use processors:
class AvatarUploader < CarrierWave::Uploader::Base
include CarrierWave::RMagick
include CarrierWave::Processing::RMagick
process :strip # strip image of all profiles and comments
process :resize_to_fill => [200, 200]
process :quality => 90 # Set JPEG/MIFF/PNG compression level (0-100)
process :convert => 'png'
def filename
super.chomp(File.extname(super)) + '.png'
end
end
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request