ThumbMaker 1.0 ---------------------------------------------------------------- Nathan Moinvaziri // nathanm.com Description ThumbMaker takes an image and produces multiple image thumbnails of specified sizes. Usage thumbmaker.exe [-attribs] /src /size* [/out][/quality][/type] Switches /src Source image /out Output path (%w = width, %h = height) /quality Output image quality (0-100) /type Output image type (eg jpg,gif,png,bmp) /size* Output size (widthxheight = 10x10) Attributes -silent Suppresses normal status messages Examples thumbmaker.exe /src nice.jpg /size 100x100 /size 200x200 result is two images called nice_100x100.jpg and nice_200x200.jpg thumbmaker.exe /src nice.jpg /size 200x0 /quality 80 /out nice200x%w.png result is a png image named nice200x?.png where ? is the calculate height using the aspect ratio for the original iamge thumbmaker.exe /src nice.jpg /size 1000x1400 /type gif result is a gif image named nice_1000x1400.gif ChangeLog 1.0: 04/15/08 + Initial release