On Fri, 6 Feb 2004, Sven Neumann wrote:
> > (parasite (list "gimp-comment" 1 "some comment"))
>
> Uhm, what makes you think that you can construct a parsite using
> (list...)
I was thinking, that it is a simple list, I haven't found any
*parasite-new or something like this function in pd
I have wrote a small script-fu script to be run by the web, but
I have encountered a problem. Script lookes like this:
(define (script-fu-xcf2gif infile outfile)
(let*
(
(img (car (gimp-file-load 1 infile infile)))
(drawable (car (gimp-drawable-get-image img)))
)
(g
My previous problem with parasites in script-fu has dissapeared
in new pre3 version (thanks Sven for URL to bugreport), but
now I have one another: I tried to define "gimp-comment" parasite
as defined in devel-docs/parasites.txt as PERSISTENT, but this
causes an execution error of the script, as
Hello,
I have created a small script-fu for batch processing, but I have
stuck on defining the parasite, I would be thankful for help.
I have found that parasite have structure of (name, flags, data) in
perl-fu and (name, flags, size, data) in C, but I haven't found on web
and in existing scrit-fu