diff options
author | Frederic Crozat <fcrozat@mandriva.com> | 2009-10-23 12:54:55 +0000 |
---|---|---|
committer | Frederic Crozat <fcrozat@mandriva.com> | 2009-10-23 12:54:55 +0000 |
commit | a7722dda96d5cf9c72d9d67927dcbc2d7ad41cfc (patch) | |
tree | 3cfc0ba7231d94ec10e694acf299960179407320 /gimp/scripts/gimp-normalize-to-bootsplash.scm | |
parent | ea256de0bef4e416bff2ccda9dc70f224a268d15 (diff) | |
download | theme-a7722dda96d5cf9c72d9d67927dcbc2d7ad41cfc.tar theme-a7722dda96d5cf9c72d9d67927dcbc2d7ad41cfc.tar.gz theme-a7722dda96d5cf9c72d9d67927dcbc2d7ad41cfc.tar.bz2 theme-a7722dda96d5cf9c72d9d67927dcbc2d7ad41cfc.tar.xz theme-a7722dda96d5cf9c72d9d67927dcbc2d7ad41cfc.zip |
- Do not hardcode png file as input file
Diffstat (limited to 'gimp/scripts/gimp-normalize-to-bootsplash.scm')
-rw-r--r-- | gimp/scripts/gimp-normalize-to-bootsplash.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gimp/scripts/gimp-normalize-to-bootsplash.scm b/gimp/scripts/gimp-normalize-to-bootsplash.scm index 16cd52c..19a4c3a 100644 --- a/gimp/scripts/gimp-normalize-to-bootsplash.scm +++ b/gimp/scripts/gimp-normalize-to-bootsplash.scm @@ -31,7 +31,7 @@ (set! i (+ i 1))))) (define (gimp-normalize-to-bootsplash quality infile outfile) - (let* ((image (car (file-png-load 1 infile infile))) + (let* ((image (car (gimp-file-load 1 infile infile))) ) (gimp-image-flatten image) @@ -49,8 +49,8 @@ (script-fu-register ; I always forget these ... "gimp-normalize-to-bootsplash" ; script name to register - "<Toolbox>/Xtns/Script-Fu/Mandriva/Save the jpeg image to the right format for bootsplash" ; where it goes - "Transform a png image to a jpg compatible image for bootsplash" ; script description + "<Image>/Filters/Mandriva/Save the jpeg image to the right format for bootsplash" ; where it goes + "Transform an image to a jpg compatible image for bootsplash" ; script description "Warly/blino" ; author "Copyright 2006 by Mandriva; GNU GPL" ; copyright "2006-09-01" ; date |