Re: [Rails] How can I convert an ImageMagick shell script for use in my RoR project?

2014-04-10 Thread Walter Lee Davis
Here's just one of the many examples out there of how to code a plugin for CarrierWave: http://www.freezzo.com/2010/12/23/create-ffmpeg-processor-for-carrierwave-in-rails-3/ Personally, I find the tooling around Paperclip to be a lot more hackable in this regard. The thumbnail processor can be

[Rails] How can I convert an ImageMagick shell script for use in my RoR project?

2014-04-09 Thread Eric Kornmeyer
I'm creating a project that lets users upload images onto products and then buy the products. I'm using Carrierwave and Minimagick. I found this cylnderize script on fmwconcepts. It's a shell script. It is literally perfect for what I need as a lot of the products are mugs. Does anyone know how I

Re: [Rails] How can I convert an ImageMagick shell script for use in my RoR project?

2014-04-09 Thread Thota praneeth
Hello Eric, I hope this is the one you need: system -COMMAND convert image.png -monochrome -format png -density 300 another_image.png COMMAND On Thu, Apr 10, 2014 at 5:25 AM, Eric Kornmeyer li...@ruby-forum.comwrote: I'm creating a