I'm experimenting with script-fu, trying to teach myself how to use it. I have the following basic script, which I thought would create, then display, a new image:
(define (script-fu-test)
(let*
(
(image (car (gimp-image-new 10 10 RGB)))
)
(gimp-display-new image)
(gimp-context-pop)
)
)
I'm calling the script like so:
./gimp-2.8 -i -b '(script-fu-test)'
and it's failing, like so:
batch command experienced an execution error:
Error: ( : 32662) Procedure execution of gimp-display-new failed
anyone have a hint about what i might be messing up here?
I'm running this on a Mac OS X (ie /Applications/Gimp.app/Contents/MacOS/gimp-2.8)