[Gimp-user] gimp-comment in batch file

2007-06-03 Thread David Woodfall
Hi, I'm trying to write a batch scm to insert a comment into a tiff. Here is the test code. It appears to function correctly but does not seem to add the comment: (define (batch-test pattern) (let* ( (filelist (cadr (file-glob pattern 1))) (filename2) (filename)

[Gimp-user] GIMP 2.3 from MacPorts

2007-06-03 Thread Victor Domingos
Hi! Finally I have managed to compile GIMP 2.3 (unstable) using MacPorts. It is really unstable, for now. But I like some of the improvements. The menus are getting a little more consistent. One question: is it possible to set a different language? I'm glad that now I can read most of the

Re: [Gimp-user] GIMP 2.3 from MacPorts

2007-06-03 Thread Renan Birck
Em Seg, 2007-06-04 às 00:32 +0100, Victor Domingos escreveu: By the way... is there a place where we can find info about how to use the new features, everytime a new version is out? In Blender, they publish some examples of how each new feature can be applied. Is there a similar place

Re: [Gimp-user] gimp-comment in batch file

2007-06-03 Thread saulgoode
In order to change the gimp-comment you must change a parasite that is attached to the image. The following code defines a function that will set the 'gimp-comment' parasite to the passed string. (Note: I don't have access to the GIMP right now, so I haven't tested it; though I think it will

Re: [Gimp-user] gimp-comment in batch file

2007-06-03 Thread saulgoode
OOPS! The 'if' statement should be (if (null? errobj). I had my logic backwards. Quoting [EMAIL PROTECTED]: ;;-- ;; 'add-comment' attaches gimp-comment parasite to 'image' ;; with the value of the passed 'string' ;;