summaryrefslogtreecommitdiffstats
path: root/gimp/scripts/gimp-convert-to-jpeg.scm
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2016-09-18 15:18:10 +0200
committerRémi Verschelde <rverschelde@gmail.com>2016-09-18 15:18:10 +0200
commitc79ce66f23e8c7be74add553b8b768a61f70aa2c (patch)
tree45e04ed9c93cd8079edbbc4b266c5c98f307b27d /gimp/scripts/gimp-convert-to-jpeg.scm
parent65cb6137741360598fe6026ced3c4de4c971ba82 (diff)
downloadtheme-c79ce66f23e8c7be74add553b8b768a61f70aa2c.tar
theme-c79ce66f23e8c7be74add553b8b768a61f70aa2c.tar.gz
theme-c79ce66f23e8c7be74add553b8b768a61f70aa2c.tar.bz2
theme-c79ce66f23e8c7be74add553b8b768a61f70aa2c.tar.xz
theme-c79ce66f23e8c7be74add553b8b768a61f70aa2c.zip
Remove non-working gimp scripts
Generating the gfxboot jpg is best done manually.
Diffstat (limited to 'gimp/scripts/gimp-convert-to-jpeg.scm')
-rw-r--r--gimp/scripts/gimp-convert-to-jpeg.scm17
1 files changed, 0 insertions, 17 deletions
diff --git a/gimp/scripts/gimp-convert-to-jpeg.scm b/gimp/scripts/gimp-convert-to-jpeg.scm
deleted file mode 100644
index 29efef0..0000000
--- a/gimp/scripts/gimp-convert-to-jpeg.scm
+++ /dev/null
@@ -1,17 +0,0 @@
-
-(define (gimp-convert-to-jpeg 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))))
- (if (= (car (gimp-drawable-is-rgb drawable)) FALSE)
- (gimp-image-convert-rgb image))
-
- (file-jpeg-save 1 image drawable outfile outfile quality 0 1 0 "Mageia Theme" 2 1 0 2 )
- (gimp-image-delete image)
- )
-
- )
-)