Hi,

On Tue, 2008-12-16 at 06:43 +0100, Stefano wrote:

>   (let*
>     (
>       (image (car (gimp-image-new 800 600 RGB)))
>       (background-layer (car (gimp-layer-new image 800 600 RGB-IMAGE 
> "Background" 100 NORMAL-MODE)))
>       (background-photo (car (gimp-file-load-layer RUN-NONINTERACTIVE image 
> "C:/Foto/2008-03 Italy/Bologna/img_0472.jpg")))
>     )
>     (gimp-message (string-append (number->string image) "\n" (number->string 
> background-photo)))
>     (gimp-drawable-fill background-layer BG-IMAGE-FILL)
>     (gimp-image-add-layer image background-layer -1)
>     (gimp-image-add-layer image background-photo -1)
>     (gimp-layer-set-opacity background-photo 20)
>     (gimp-layer-scale background-photo 800 600 FALSE)
>     (gimp-layer-set-offsets background-photo 10 20)
>     (plug-in-cartoon 1 image background-layer 7 0.2)
>     (gimp-display-new image)

You are running plug-in-cartoon on the drawable 'background-layer'. You
probably want to run it on 'background-photo' instead.


Sven


_______________________________________________
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user

Reply via email to