diff options
author | Olivier Blin <oblin@mandriva.com> | 2007-05-10 14:54:30 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2007-05-10 14:54:30 +0000 |
commit | def0c039760812f9d12c055adeb95b2903b6da1b (patch) | |
tree | 9d5e8543ee89510bd944c4c74ec98dc22dff9eec /gimp | |
download | theme-def0c039760812f9d12c055adeb95b2903b6da1b.tar theme-def0c039760812f9d12c055adeb95b2903b6da1b.tar.gz theme-def0c039760812f9d12c055adeb95b2903b6da1b.tar.bz2 theme-def0c039760812f9d12c055adeb95b2903b6da1b.tar.xz theme-def0c039760812f9d12c055adeb95b2903b6da1b.zip |
re-import mandriva-theme after SVN loss
Diffstat (limited to 'gimp')
-rw-r--r-- | gimp/gimprc | 17 | ||||
-rw-r--r-- | gimp/scripts/gimp-normalize-to-bootsplash.scm | 59 |
2 files changed, 76 insertions, 0 deletions
diff --git a/gimp/gimprc b/gimp/gimprc new file mode 100644 index 0000000..7e6556b --- /dev/null +++ b/gimp/gimprc @@ -0,0 +1,17 @@ +# GIMP gimprc +# +# This is your personal gimprc file. Any variable defined in this file takes +# precedence over the value defined in the system-wide gimprc: +# /etc/gimp/2.0/gimprc +# Most values can be set within The GIMP by changing some options in the +# Preferences dialog. + +(gimp_dir "./gimp") +(script-fu-path "./gimp/scripts:${gimp_dir}/scripts:${gimp_data_dir}/scripts") + +(tile-cache-size 256M) +(monitor-xresolution 81.000000) +(monitor-yresolution 81.000000) +(show-tips no) + +# end of gimprc diff --git a/gimp/scripts/gimp-normalize-to-bootsplash.scm b/gimp/scripts/gimp-normalize-to-bootsplash.scm new file mode 100644 index 0000000..902abe6 --- /dev/null +++ b/gimp/scripts/gimp-normalize-to-bootsplash.scm @@ -0,0 +1,59 @@ +; dmmScalePNG.scm - GIMP Script-Fu to Scale a PNG Image to a New Width +; This Script-Fu must be put in The GIMP's script directory +; (e.g., $HOME/.gimp-1.2/scripts). +; For interactive invocation, run The GIMP and go to +; Xtns -> Script-Fu -> dmm +; New width is in pixels +; + +(define (gimp-normalize-to-bootsplash-dirs quality dirpattern pattern) + (let* ((dirs (file-glob dirpattern 1)) + (count (car dirs)) + (dirlist (cadr dirs)) + (i 0)) + (while (< i count) + (let* ((dirname (aref dirlist i)) + (filepattern (strcat dirname "/" pattern))) + (gimp-message (strcat "Browsing " filepattern)) + (gimp-normalize-to-bootsplash-files quality filepattern)) + (set! i (+ i 1))))) + +(define (gimp-normalize-to-bootsplash-files quality pattern) + (let* ((files (file-glob pattern 1)) + (count (car files)) + (filelist (cadr files)) + (i 0)) + (while (< i count) + (let* ((infile (aref filelist i)) + (outfile (strcat (car (strbreakup infile ".")) ".jpg"))) + (gimp-message (strcat "Processing " infile)) + (gimp-normalize-to-bootsplash quality infile outfile)) + (set! i (+ i 1))))) + +(define (gimp-normalize-to-bootsplash quality infile outfile) + (let* ((image (car (file-png-load 1 infile infile))) + ) + + (gimp-image-flatten image) + + (let* ((drawable (car (gimp-image-get-active-drawable image)))) + + (file-jpeg-save 1 image drawable outfile outfile quality 0 0 0 "Mandriva Theme" 0 1 0 0 ) + (gimp-image-delete image) + ) + + ) +) + +(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 + "Warly/blino" ; author + "Copyright 2006 by Mandriva; GNU GPL" ; copyright + "2006-09-01" ; date + "" ; type of image + SF-VALUE "Quality" "0.9" ; default quality + SF-FILENAME "Infile" "infile.png" + SF-FILENAME "Infile" "outfile.jpg" +) |