Rounded Corners on Images in Drupal
Trying to apply rounded corners via CSS to images in all browsers is painful. Apparently several versions of Firefox (3.6 +) added to the pain when -moz-border-radius stopped working... until FF 4.0.
Then you have the dreaded IE browsers...ughh... CSS is not ready for a bullet-proof solution.
Solution: Why not pre-process the images on load-time? excellent... no need for an image editor to modify images manually.
If you are using Drupal... you are in luck:
Enter Drupal's Imagecache... except native imagecache doesn't handle rounded corners... so.. enter Imagecache Actions... an extension module to Imagecache.
In the D7 version, there is this problem where the rounded corner processing only works with PNG files. Excellent, Imagecache actions also offer the ability to convert the image to PNG.
so... a combination of actions like such...
RT: http://drupalcode.org/project/imagecache_actions.git/blob_plain/HEAD:/docs/ro...
