Archives for: "May 2009"

ImageMagick Stepped Opacity Demo

The Stepped Opacity Demo is a nice image processing technique I saw used on eZ publish's (http://ez.no) web interface. The image has a few white rectangles of increasing opacity at the bottom. This demo has a really nice image from flickr.com (credit… more »

dojox Gallery / SlideShow Demo

Link is a demo of the dojox Gallery / SlideShow widget. Implementation considerations: Table of contents (left column) provides links for SEO, as well as navigation by site visitor/organization of content. A detail page could be developed fo… more »

dojo / ImageMagick Rounded Rectangle Generator

Free utility that allows you to select a color, the dimensions of the rectangle and whether you want a gradient or not. Generates nice .PNGs. No restrictions on use. more »

ImageMagick Rounded Corners - Images

# Create an image mask with rounded corners convert -size 100x75 xc:white -fill black -draw "roundrectangle 0,0, 100,75 15,15" +negate mask.png # Create a gradient (you may skip this step if you're using an existing image) convert -size 100x75 -fill o… more »

ImageMagick Rounded Corners - CSS

I had a series of five 100x75 images, concatenated into a single image, and I wanted to display them as individual images with rounded corners. To round the corners, I used the following ImageMagick command: convert -size 100x75 xc:white -fill "#ff… more »
1 2