diff options
author | Olivier Blin <oblin@mandriva.com> | 2007-08-28 12:06:47 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2007-08-28 12:06:47 +0000 |
commit | f6e4c440d34622f5ed1e4fde5a5ab047c4ac121e (patch) | |
tree | 1c134fe63b79466275963a612fe55faee1692083 /gimp | |
parent | 19cb7ffef448899150a7c1a87d28a8c0cb264bfe (diff) | |
download | theme-f6e4c440d34622f5ed1e4fde5a5ab047c4ac121e.tar theme-f6e4c440d34622f5ed1e4fde5a5ab047c4ac121e.tar.gz theme-f6e4c440d34622f5ed1e4fde5a5ab047c4ac121e.tar.bz2 theme-f6e4c440d34622f5ed1e4fde5a5ab047c4ac121e.tar.xz theme-f6e4c440d34622f5ed1e4fde5a5ab047c4ac121e.zip |
convert image to rgb before saving as jpeg (fix using indexed images as source)
Diffstat (limited to 'gimp')
-rw-r--r-- | gimp/scripts/gimp-normalize-to-bootsplash.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gimp/scripts/gimp-normalize-to-bootsplash.scm b/gimp/scripts/gimp-normalize-to-bootsplash.scm index 902abe6..6f961d8 100644 --- a/gimp/scripts/gimp-normalize-to-bootsplash.scm +++ b/gimp/scripts/gimp-normalize-to-bootsplash.scm @@ -35,6 +35,7 @@ ) (gimp-image-flatten image) + (gimp-image-convert-rgb image) (let* ((drawable (car (gimp-image-get-active-drawable image)))) |