views:

13

answers:

1

Hi, I'm making a application with ruby on rails and I was wondering if anyone knew of a gem or plugin to resize images as they are served similar to http://shiftingpixel.com/2008/03/03/smart-image-resizer/

Thanks.

A: 

I would suggest you to use ImageMagick / PaperClip

with which you can achieve the same thing mentioned in the link you provided...

Sourcebits
The problem is, as far as I'm aware, ImageMagick and paperclip are used for image uploads and can only be resized during the upload. I need the images to be resized differently for each user.
Jeff