From ea5160192989899211ca146b985e5f3201a2875d Mon Sep 17 00:00:00 2001 From: kraxel Date: Mon, 8 Nov 2004 13:09:20 +0000 Subject: - fbgs: add switch to display color. --- fbgs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'fbgs') diff --git a/fbgs b/fbgs index cff56e4..bbb6444 100755 --- a/fbgs +++ b/fbgs @@ -9,6 +9,7 @@ trap "rm -rf $DIR" EXIT fbiopts="" gsopts="" passwd="" +device="tiffpack" opt=1 while test "$opt" = "1"; do case "$1" in @@ -21,7 +22,7 @@ while test "$opt" = "1"; do -xxl) gsopts="$gsopts -r150x150" shift ;; - -q | -a) + -q | -a | --fitwidth) fbiopts="$fbiopts $1" shift ;; @@ -35,6 +36,9 @@ while test "$opt" = "1"; do -h) echo fixme: help text exit 1 ;; + -c) device="png16m" + shift + ;; -*) echo "unknown option: $1" exit 1 ;; @@ -49,7 +53,7 @@ echo "### rendering pages, please wait ... ###" echo gs -dSAVER -dNOPAUSE -dBATCH \ -sPDFPassword="$password" \ - -sDEVICE=tiffpack -sOutputFile=$DIR/ps%03d.tiff \ + -sDEVICE=${device} -sOutputFile=$DIR/ps%03d.tiff \ $gsopts \ "$1" -- cgit