For cropping images I use Jcrop, a plugin for jQuery. It works pretty well and there are already some tutorials for integrating it into a Rails app. So this post is almost a simple update to what’s already available in the internet. What follows is just my setup.
1: create an Upload model, i.e. a class for holding uploaded files, not only images. This is fairly straightforward.
{[ .migration-basic | 1.hljs(=ruby=) ]}
{[ .upload-class-basic | 1.hljs(=ruby=) ]}
2: attach Paperclip to the Upload model.
{[ .gem-cargo | 1.hljs(=ruby=) ]}
{[ .migration-cargo | 1.hljs(=ruby=) ]}
Note that in my setup, contrary to what’s generally advised, I’m trashing the really original image in favor of a (small and) predictable version of it. (width, height and weight)
{[ .upload-class-cargo | 1.hljs(=ruby=) ]}
3: add exif data support
{[ .gem-exif | 1.hljs(=ruby=) ]}
{[ .migration-exif | 1.hljs(=ruby=) ]}
{[ .upload-class-exif | 1.hljs(=ruby=) ]}
4: add cropping support
Jcrop must be installed in Rails.
- I added a /vendor/assets/jquery-jcrop/0.9.2 directory with all of its files in it.
- I copied js/jquery-Jcrop.js, css/jquery-Jcrop.css and Jcrop.gif into the /vendor/assets/jquery-jcrop directory.
- I added a = require jquery.Jcrop line into both the /app/assets/javascripts/application.js and /app/assets/stylesheets/application.css manifests.
{[ .manual-thumbnail | 1.hljs(=ruby=) ]}
{[ .migration-crop | 1.hljs(=ruby=) ]}
{[ .upload-class-crop | 1.hljs(=ruby=) ]}
5: modify the generated controller such that
- all necessary params are whitelisted
- upon image creation the user is given a chance to crop it
- upon image update it gets cropped
{[ .uploads-controller | 1.hljs(=ruby=) ]}
6: modify the form helper
{[ .form-helper | 1.hilite(=html=) ]}
7: modify the show template
{[ .show-template | 1.hilite(=html=) ]}
One Reply to “How to allow users to crop images in Rails 4”