What is the difference between using > or # when cropping a thumb:
example:
has_attached_file :image, :styles => {:small => "100x100#"}
has_attached_file :image, :styles => {:small => "100x100>"}
How do get a thumb that has the maxium height of 100px but variable width (to preserve the aspect ratio)?
Thanks
Deb