From 2b5b8ef9e5301b43d869f85e061759df5c316769 Mon Sep 17 00:00:00 2001 From: Han-Wen Nienhuys Date: Wed, 13 Dec 2006 14:32:57 +0100 Subject: [PATCH] ps-to-png: use -depth 8 for imagemagick. Stops bulky 48-bit output files. --- scm/ps-to-png.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) )) -- 2.39.2