Standardize all flames
[ianweller-flames.git] / scripts / jpeg.scm
blob666a21926dd97156f5d6a6ff3287194a16f6ae6f
1 (define (make-fractal-jpeg infile outfile)
2   (let*
3     (
4       (image (car (gimp-file-load 1 infile infile)))
5       (drawable (car (gimp-image-merge-visible-layers image 2)))
6     )
7     (file-jpeg-save 1 image drawable outfile outfile 0.97 0 1 0 "" 3 1 0 1)
8   )