我有一个图像文件夹,我需要从中制作 60x60 像素的缩略图。原件大小不一,我希望能够选择每个图像的哪个部分用于缩略图。有没有办法使用 Gimp 脚本自动执行此操作?
我想顺序如下:
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.
理想情况下,除了第 1 步和第 3 步之外的所有内容都将是自动化的。这可能吗?如果是这样,一些关于如何开始的提示将不胜感激。谢谢。