I'm on Rails 4, Paperclip 4.1, Imagemagick 6.8.9
Based on an earlier version of IM, this is the effect I want - http://www.imagemagick.org/Usage/resize/#space_fill - See the problem with alignment on my demo site here - http://mktdemo.herokuapp.com
Can someone help with what convert options I should use below. Here is my rails model code. I tried playing with some options but didn't get it to align as I wanted. The swap+ option as outlined in the link above doesn't work in newer versions.
Code: Select all
has_attached_file :image,
:styles => { :medium => "200x200", :thumb => "100x100" },
:default_url => ""
:convert_options => {:medium => ???}