vote up 1 vote down star
2

Hi, in my Rails app I want to have a similar profile section like Facebook where uploaded images are automatically thumbnailed and corner-rounded. I'm using the convert utility to downsize images into thumbnails, but is there an option to round their corners too? Thanks.

flag

61% accept rate

2 Answers

vote up 1 vote down check

Here are some rounded corners examples: http://www.imagemagick.org/Usage/thumbnails/#rounded_border. You'll need to create a mask of some sort (either by hand or using the drawing tools) and then overlay it onto your image.

link|flag
Are there any jQuery plugins to automagically do this, or is that just wishful thinking? – jamtoday Jun 29 at 6:07
This page gives an example of using the jquery corners plugin on an image: malsup.com/jquery/corner/image.html It's referencing the plugin from here: jqueryjs.googlecode.com/svn/trunk/… – Jeremy Stanley Jun 29 at 8:00
vote up 6 vote down

Facebook doesn't modify pictures to have rounded corners. Instead, they use HTML and CSS to apply this image over each user picture: http://www.facebook.com/images/ui/UIRoundedImage.png

If you inspect UIRoundedImage.png, you'll find that each "square" consists of a transparent center, and opaque corners that are meant to match the background on which the user picture will rest. For instance, if the user picture is on a white background, then white opaque rounded corners will be overlaid on the user picture.

The CSS technique for using just a specific part of UIRoundedImage.png is called "CSS sprites". You can read more about it here: http://www.alistapart.com/articles/sprites/

link|flag

Your Answer

Get an OpenID
or

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