我正在尝试使用 script-fu,试图自学如何使用它。我有以下基本脚本,我认为它会创建并显示一个新图像:
(define (script-fu-test)
(let*
(
(image (car (gimp-image-new 10 10 RGB)))
)
(gimp-display-new image)
(gimp-context-pop)
)
)
我这样调用脚本:
./gimp-2.8 -i -b '(script-fu-test)'
它失败了,就像这样:
batch command experienced an execution error:
Error: ( : 32662) Procedure execution of gimp-display-new failed
有人暗示我可能在这里搞砸了什么吗?
我在 Mac OS X 上运行它(即 /Applications/Gimp.app/Contents/MacOS/gimp-2.8)