%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
#!/bin/sh # extract file name and arguments from command line. File name # is supposed to be the last one, if it doesn't exist, then it # is assumed to be another argument. FILE= ARGS= GRAYSCALE= for arg in "$@"; do if [ "$arg" = "-gray" ]; then GRAYSCALE=1 else ARGS="$ARGS $FILE" FILE=$arg; fi done # we're reading from STDIN, store it into a temporary file temp=0 if test -z "$FILE" -o ! -f "$FILE" ; then ARGS="$ARGS $FILE" FILE=`mktemp --tmpdir imagetops.XXXXXX` || exit 1 cat > "$FILE" temp=1 fi # check the file mime type, and set the command correspondingly cmd= magic=`file -bi "$FILE"` magicbase=`echo $magic | cut -f 1 -d "/"` magictype=`echo $magic | cut -f 2- -d "/" | cut -f 1 -d ";"` if test "$magicbase" != "image" ; then echo "Not an image" exit 1; fi case $magictype in jpeg) cmd="jpegtopnm" ;; png|x-png) cmd="pngtopnm" ;; bmp|x-bmp) cmd="bmptoppm" ;; gif) cmd="giftopnm" ;; tiff) cmd="tifftopnm" ;; *) echo "Unsupported image type: $magic" exit 1 ;; esac # executing command if [ "$GRAYSCALE" = "1" ]; then exec $cmd "$FILE" | ppmtopgm | pnmtops $ARGS else exec $cmd "$FILE" | pnmtops $ARGS fi # removing temporary file if test "$temp" = "1"; then rm -f "$FILE" fi