ImageMagick Custom Scripting on Rails (Paperclip?)

I would like to use some of these scripts: http://www.fmwconcepts.com/imagemagick/ to process images uploaded to my Rails application. How can i achieve this? Can I customize it in Paperclip anyway to write some kind of custom code?

+3
source share
2 answers

Paperclip provides a way to write your own image processor, which primarily uses the command line tools provided by imagemagick, etc.

Since the scripts you are referring to above are command line tools, it will be pretty trivial to write a processor to use them.

Resources

+3
source

You might want to consider CarrierWave instead of Paperclip. Easier to customize image processing behavior with CarrierWave and RMagick.

Railscast about CarrierWave is a great starting point:
http://railscasts.com/episodes/253-carrierwave-file-uploads

+1
source

All Articles