I have a folder of images from which I need to make 60x60pixel thumbnails. The originals are of mixed sizes, and I'd like to be able to select which portion of each image to use for the thumbnail. Is there a way to automate this with Gimp scripting?
I imagine the sequence to be as follows:
1. Wait for user to specify source folder.
2. Open first image.
3. Wait for user to select part of the image
(with fixed 1:1 aspect ratio)
(... how does the user tell the script to continue?)
4. Crop to selection.
5. Resize image to 60x60.
6. Apply sharpen filter (some fixed settings for this are ok).
7. Save image.
8. Open next image (if any) and repeat from step 3 above.
Ideally, everything except steps 1 & 3 would be automated. Is this possible? If so, some tips on how to get started would be much appreciated. Thanks.