From: Han-Wen Nienhuys Date: Wed, 13 Dec 2006 13:32:57 +0000 (+0100) Subject: ps-to-png: use -depth 8 for imagemagick. Stops bulky 48-bit output files. X-Git-Tag: release/2.11.3-1~37 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=2b5b8ef9e5301b43d869f85e061759df5c316769;p=lilypond.git ps-to-png: use -depth 8 for imagemagick. Stops bulky 48-bit output files. --- diff --git a/scm/ps-to-png.scm b/scm/ps-to-png.scm index 212029ed17..2d429886f3 100644 --- a/scm/ps-to-png.scm +++ b/scm/ps-to-png.scm @@ -108,7 +108,7 @@ (rename-file file old) (my-system be-verbose #t - (format #f "convert -scale \"~a%\" ~a ~a" percentage old file)) + (format #f "convert -scale \"~a%\" -depth 8 ~a ~a" percentage old file)) (delete-file old) ))