RSS/Atom feed Twitter
Site is read-only, email is disabled

Script-Fu : ERROR: bad function (see errobj)

This discussion is connected to the gimp-developer-list.gnome.org mailing list which is provided by the GIMP developers and not related to gimpusers.com.

This is a read-only list on gimpusers.com so this discussion thread is read-only, too.

1 of 1 message available
Toggle history

Please log in to manage your subscriptions.

Script-Fu : ERROR: bad function (see errobj) Valter Mazzola 26 Feb 22:30
Valter Mazzola
2003-02-26 22:30:47 UTC (about 21 years ago)

Script-Fu : ERROR: bad function (see errobj)

Try to generate a script-fu-alien-glow-logo and save it to /root/a.png i get the error

ERROR: bad function (see errobj)

if i replace: (image (car ( (script-fu-alien-glow-logo "hello hello" 150 "-*-utopia-bold-r-*-*-150-*-*-*-*-*-*-*" '(255 0 0)) )) ) with : (image (car (gimp-file-load 0 "/root/clock.gif" "/root/clock.gif"))), the saved image is ok.

Valter

-----------

(begin (let*
(
(image (car ( (script-fu-alien-glow-logo "hello hello" 150 "-*-utopia-bold-r-*-*-150-*-*-*-*-*-*-*" '(255 0 0)) )) ) ; (image (car (gimp-file-load 0 "/root/clock.gif" "/root/clock.gif"))) (drawable nil)
)

(set! drawable (car (gimp-image-flatten image))) (gimp-file-save 1 image drawable "/root/a.png" "/root/a.png") (gimp-image-delete image)
) ;let
)