0

I have the following Picture:

enter image description here

And you guessed it: I want to extract all the little pictures into separate files. What I want to now:

  1. Is it possible to do this with one of Gimps scripting interfaces?
  2. Would you use “Batch-Mode”, “Script-Fi”, “Plug-ins” or something else I am not aware of?
  3. If yes: I have no experience with Gimp scripting: How much effort will it be to learn the needed skills?

Of course any additional pointers will be greatly appreciated.

4

1 回答 1

1

编写 GIMP 脚本的最佳方法之一是使用 Python 语言 - 这样您就可以完全访问 Python 可以利用的任何其他资源,除了 GIMP 的 API

在上述情况下,我将继续在网格线上放置图像指南,然后使用“切片”插件 - 它会为每个表格单元格生成一个 GIMP 图像。然后使用 Python,甚至可以是交互式控制台,循环浏览图像并对它们执行额外的操作(如保存)。

要查看在 GIMP 中可以戏剧性地完成什么,请查看帮助-> 程序数据库菜单条目。如果你没有“filters->python-fu”菜单项,你给安装了 GIMP-Python 环境。对于 Linux,它可以作为单独的包提供,对于 Windows,您必须使用 google 搜索它,因为它需要以正确的顺序安装 3 或 4 个不同的组件。(希望当 GIMP 2.8 - 下一个版本发布时 - Python 环境将内置在 Windows 安装中)

于 2011-11-07T11:41:24.170 回答