Hello, I'm doing my first script and i have a problem. I load an image into Gimp 2.2, I make a selection and my script must paste the selection into a new image and save this new picture into a specific file. My question is how to get the image object after the command : plug-in-clipboard-paste-as-new I'm sure it's easy but i can't find it. Thank's a lot Here is my script : (define (script-fu-hello-world img drawable) (set! draw (car (gimp-image-active-drawable img))) (gimp-edit-copy draw) (plug-in-clipboard-paste-as-new 0) ) (script-fu-register "script-fu-test" _"Tes_t..." "Copy selection and paste it into a new jpeg file" "Jf PERRIN <zz@xxxxx>" "Jean-François PERRIN" "2007-06-07" "" SF-IMAGE "Input Image" 0 SF-DRAWABLE "Input Drawable" 0) (script-fu-menu-register "script-fu-test" _"<Toolbox>/Xtns/Script-Fu/Logos")