我有一个脚本 blackandwhite.py 放在“C:\Users\Marcin.gimp-2.8\plug-ins”文件夹中。它需要两个目录作为参数。从 GIMP 菜单或 python-fu 控制台执行时,它工作得很好:
pdb.python_fu_black_and_white("L:\PICS", "L:\OUT");
但是,当我尝试从命令行执行它时
gimp-console-2.8.exe -df --batch-interpreter python-fu-eval -b "from gimpfu import *;pdb.python_fu_black_and_white(0,"L:\PICS", "L:\OUT")" -b "pdb.gimp_quit(1)"
它给出了“批处理命令遇到执行错误”。有谁知道如何正确地做到这一点?