derek holzer wrote:
Can anyone recommend a Linux/Unix/OSX script for a "favorite tool" that could dynamically generate thumbnails?
ImageMagick provides 'convert':
convert -resize 160x120 image.jpg image-thumb.png
Note that this preserves aspect ratio, which may or may not be what you want (I haven't worked out how to stretch an image to a precise size with convert yet, if someone knows then please tell me!).