Re: [Gimp-user] how / when to use gimp-image-delete

2012-09-20 Thread Gary Aitken
On 09/19/12 04:19, paynekj wrote: > According to the procedure browser, > the third parameter to pass to the plug-in-unsharp-mask should be the > drawable id, > but you are passing the image id. > It's only working in your first stage because, by luck, > the image id and the drawable id have the s

[Gimp-user] how / when to use gimp-image-delete

2012-09-19 Thread paynekj
According to the procedure browser, the third parameter to pass to the plug-in-unsharp-mask should be the drawable id, but you are passing the image id. It's only working in your first stage because, by luck, the image id and the drawable id have the same value. You need to get a drawable id -

[Gimp-user] how / when to use gimp-image-delete

2012-09-19 Thread Gary Aitken
When processing a series of files in script-fu, I'm trying to do the following: for each file name: Create an image by reading it in. (set! orgImg (car (file-ufraw-load ... Create another image by duplicating the input image and manipulating it. (set! newImg (car (gimp-image-duplicate