I am using Ruby on Rails and the Paperclip gem and I would like to rotate an image before it is stylized and saved on my server.
For example, if in my model I have:
has_attached_file :avatar,
:styles => {
:thumb => ["50x50#", :jpg],
:small => ["100x100>", :jpg],
:medium => ["100x100>", :jpg] }
I would like to implement these steps:
- an user upload an image;
- the RoR application show to the user the "medium" image (maybe saving the related file in a temporary directory);
- the user adjust (rotate) the image and then use a button to submit it;
- the RoR application process the image (rotation, conversion, size, ...) using Paperclip and save all related files ("thumb", "small" and "medium" image) on the disk.
How can I implement these steps in a RoR application?
I've seen the Railcast 182... I would not add third-party software, but do the implementation myself, for example with a new view file, AJAX approach (RJS) and ImageMagick libraries.
P.S.: I read about Paperclip "processors" but I am still not able to implement those. Can someone help me?