ricoh-sp100-sp204/pstoricohddst-gdi

55 lines
1.1 KiB
Plaintext
Raw Normal View History

#!/bin/bash
user="$2"
ptitle="$3"
ddate="`LC_ALL=en_US.UTF-8 date '+%Y/%m/%d %H:%M:%S'`"
uid="/tmp/pstoricohddst-gdi-`uuidgen`"
mkdir -p $uid
gs -sDEVICE=psmono -sOutputFile=- -r600 -dQUIET -dBATCH -dNOPAUSE - | gs -sDEVICE=pbmraw -sOutputFile=${uid}/%d-page.pbm -r600 -dQUIET -dBATCH -dNOPAUSE -
cat <<EOF
%-12345X@PJL
@PJL SET TIMESTAMP=$ddate
@PJL SET FILENAME=Document
@PJL SET COMPRESS=JBIG
@PJL SET USERNAME=$user
@PJL SET COVER=OFF
@PJL SET HOLD=OFF
EOF
ls $uid/ | grep 'pbm$' | sort -n | while read page; do
pbmtojbg -p 72 -o 3 -m 0 -q < $uid/$page > $uid/raster.jbig
jsize=`wc -c < $uid/raster.jbig`
read fn ft xs ys garb < <(identify $uid/raster.jbig | tr "x" " ")
cat <<EOF
@PJL SET PAGESTATUS=START
@PJL SET COPIES=1
@PJL SET MEDIASOURCE=AUTO
@PJL SET MEDIATYPE=PLAINRECYCLE
@PJL SET PAPER=A4
@PJL SET PAPERWIDTH=$xs
@PJL SET PAPERLENGTH=$ys
@PJL SET RESOLUTION=600
@PJL SET IMAGELEN=$jsize
EOF
cat $uid/raster.jbig
cat <<EOF
@PJL SET DOTCOUNT=1132782
@PJL SET PAGESTATUS=END
EOF
done
cat <<EOF
@PJL EOJ
%-12345X
EOF
2013-09-06 17:24:11 +02:00
rm -rf $uid