我对 gimp 如何为 python 插件生成 gui 的艺术有点困惑。
gimp 为我的脚本生成了两个不需要的字段。“输入图像”和“输入可绘制”。我怎样才能禁用它们?
我在标准文档中没有找到任何关于它的信息。
我的注册方法:
register(
"fixPngColors",
"fixPngColors",
"fixPngColors",
"Author",
"Author",
"2013",
"<Image>/plug-ins/BATCH PNG Color Fix",
"",
[
(PF_DIRNAME, "png_input_directory", "Png directory(INPUT)", ""),
(PF_DIRNAME, "png_output_directory", "Png directory(OUTPUT)", ""),
(PF_INT, "c_count", "Max Colors", "255"),
],
[],
launcher
)
如您所见,其他两个都没有。