Tagged Questions
4
votes
1answer
3k views
How can I resize an image to fit area with Image::Magick?
From command line with imagemagick, you can use:
convert dragon.gif -resize 64x64^ -gravity center -extent 64x64 fill_crop_dragon.gif
to resize and then crop an image so that it fills the area as ...
1
vote
2answers
267 views
Rails 3.0.1 and Paperclip - Image not resizing
I have the following code on my model:
has_attached_file :photo, :styles => { :small => "150x150#" }, :storage => :s3, :s3_credentials => "#{RAILS_ROOT}/config/s3.yml", :path => ...