home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
gondwana.ecr.mu.oz.au/pub/
/
Graphics.tar
/
Graphics
/
VOGLE.ZIP
/
DRIVERS
/
P6TO
< prev
next >
Wrap
Text File
|
2000-02-11
|
323b
|
18 lines
#!/bin/sh
PATH=$PATH:/usr/local/netpbm
export PATH
# this is the p6to script used by the VOGLE p6 driver
case "$P6TO" in
GIF) ppmtogif > $$.gif # gif file
;;
TIFF) pnmtotiff >$$.tiff # tiff file
;;
XBM) 'ppmtopgm|pgmtopbm|pbmtoxbm' > $$.xbm # greyscale X11 bitmap
;;
*)
cat > $$_p6.ppm
;;
esac
exit