Overview
--------
This file contains some quick notes on installation in general.  For a
complete step-by-step instruction on how to install pbm2ppa for your
printer, please see INSTALL-MORE.  (It was written for the 820, but it
should work for all supported models) Thanks to Michael Buehlmann for
writing that guide!

Compilation
-----------
	To compile, you should simply run 'make' with the series of your
printer.  The following options are supported:

make 720	# for 720 series - e.g. 722C
make 820	# for 820 series - e.g. 820Cse
make 1000	# for 1000 series

If you choose to recompile for a different printer series, you must 'make
clean' first.

Installation
------------
	Two binaries are created: pbmtpg and pbm2ppa.  pbmtpg is used to
calibrate your printer (the default calibrations should work okay,
but you might want to tweak them).  See the CALIBRATION file for details.

	The other binary created, pbm2ppa, is a converter from a PBM
image to a stream of PPA data that can be sent directly to the printer.
The PBM image is expected to be 600 dpi, 8.5"x11".  These files can be
generated with ghostscript.  Both the pbm and pbmraw devices are supported.
pbmraw is MUCH faster, so use it if you have it available!

Use
---
	To print a postscript file with this program, I use a simple
shell script:

cat $1 | gs -sDEVICE=pbm -q -dNOPAUSE -r600 -sOutputFile=- - | \
pbm2ppa - - | lpr

	You can also set up a printer filter.  See the documentation for
your print spooler for information on how to do that, or look in
hp820install.doc for an example lpd print filter for Postscript and text
files.
