I would like to use some of these scripts: http://www.fmwconcepts.com/imagemagick/ for processing images uploaded to my Rails app. How can I achieve it? Can I set it up in Paperclip somehow or need to write some custom code?
I would like to use some of these scripts: http://www.fmwconcepts.com/imagemagick/ for processing images uploaded
Share
Paperclip provides a way to write your own image processor, which primarily make use of the command line tools provided by imagemagick and the like.
Since the scripts you link to above are all command line tools, it will be fairly trivial to write a processor to use these.
Resources: