[Gimp-developer] (gimp-image-add-layer)?

2003-06-07 Thread Douglas Lewan
All, I've just started hacking in the Gimp via scheme and clearly don't understand (gimp-image-add-layer). What I've read suggests that the following ought to get me a new layer in an image. => (set! the-image-id (car (gimp-image-new 10 10 GRAY_IMAGE))) 0 => (set! the-layer-id (car (gimp-la

[Gimp-developer] ANNOUNCE: Gimp-Print 4.3.16

2003-06-07 Thread Robert L Krawitz
Gimp-Print 4.3.16, released June 7, 2003, is a development release of this package. Like all development releases, this version is considered unstable and should only be used by those individuals tolerant of the likelihood of problems. Individuals desiring a stable release of Gimp-Print should us

Re: [Gimp-developer] (gimp-image-add-layer)?

2003-06-07 Thread Helvetix Victorinox
You need to say something like: (set! the-image-id (car (gimp-image-new 10 10 GRAY))) (set! the-layer-id (car (gimp-layer-new the-image-id 10 10 GRAYA_IMAGE "a named layer" 100 NORMAL))) (gimp-image-add-layer the-image-id the-layer-id -1) In my opinion the PDB documentation isn't helpful in thi