vote up 0 vote down star

I upload a photo, it is a rectangle. How Can I get it resized and filled to a square ?

I mean when the photo is horizontal positioned it should have above and under it, two white fields (for keeping the shape of a square) and when it is vertically, it should have two white fields on the sides of the photo.

When I used PHP, a have used this http://www.verot.net/php_class_upload_samples.htm

Have a look at the

100x150, keeping ratio, filling top and bottom

example

I'm using Paperclip with RoR. How is the best way to do that ?

flag

71% accept rate

1 Answer

vote up 0 vote down

You need to define a style. Here's an example.

link|flag
Yes, I know, but how to do this ? imagemagick.org/Usage/thumbnails/#fit – astropanic Jul 22 at 17:26
has_attached_file :picture, :styles => { :custom => "100x100>" } – weppos Jul 22 at 17:31
this does'n center the image in the square box – astropanic Jul 22 at 17:37
:convert_options => { :thumb => '-background white -gravity center -extent 50x50' } this works for me, thanks weppos – astropanic Jul 22 at 17:38

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.