#!/bin/sh # # generate_photo_index 'images' # # Generate the photo index thumbnail map "INDEX.html", for the # "photo_store" sub-directory of IM Examples. # # A 'polariod' style image thumbnail is used, and the index image is magicked # to JPEG format. The HTML file is also edited using the perl in-place # editing script to substite various strings, adding the more user friendly # text to the resulting index file. # # Anthony Thyssen 13 September 2007 # . ../generate_options magick montage -size 500x500 "*_orig.*" \ -auto-orient -thumbnail 240x240 -set caption '%t' \ -bordercolor Lavender -background black \ -pointsize 12 -density 144x144 +polaroid -resize 50% \ -gravity center -background none -extent 165x175 \ -set label '' -background "$page_bg_color" \ -geometry '-10-10' -tile 5x INDEX.html magick INDEX.png INDEX.jpg rm -f INDEX.png INDEX_map.shtml perl -i -ple '# inline editing of the HTML file next if /^<\?xml/ || /^@i; s@^.*@<TITLE>IM Examples, Photo Store@i; s@^

.*@

IM Examples, Photo Store

@i; s@^
@
ImageMagick Examples Preface and Index
Directory Index of Photo Store
Fancy Polaroid Photo Index (of original images)

These photographs are used as part of detailed examples of image processing using ImageMagick.

Many of the images are standard images used in research papers on image processing, including "lena", "mandrill", "tiffany", and "zelda". Others are personal photos taken with a digital camera, including "holocaust", "chinese_chess", "pagoda", "spiral_stairs". Finally a couple of special situation images are present, including "rings" for image scaling aliasing tests, as well as "night_club" and "night_scape" of low light conditions.

Details are to the source of the image and posible modifications made to non-original images are given in the "README" file in the directory.

The following are the photos marked as "original" in this directiory. There are many other photos, as well a duplicates of these at smaller sizes for more direct use in examples. See Directory Index for a full index of all images in this directory.

Enjoy! -- Anthony

Click on a photo below to see the full sized "original" image
@; s@^@

 


Created: 13 September 2007
Author: Anthony Thyssen, <Anthony.Thyssen@gmail.com>

This Page was created using a shell script, "generate_index", applying methods discussed in Indexes of Images. More specifically Polaroid Montages, and Index Maps using JPEG.
@; ' INDEX.html chmod 644 INDEX.*