What I want to do is take the uploaded image and create a thumb 110px x
85px. I want the thumb to be cropped and not be stretched.
I also want it to create a version 560px x 300px again cropping the
image and not stretching it.
Assuming you have RMagick installed, this is easy
file_column :photo, :rmagick => {
:versions => {
:thumb => {:crop => "110:85", :size => "110x"}, # :size => "WWxHH"
# but either can be omitted if you want the other
# dimension calculated
:medium => {:crop => "28:15", :size => "560x"} # :crop is a ratio
# and cropping is done before resizing
}
}