Installing PJ
-------------

Typing 'make install' in this directory will copy pj.jar and pjscript
to /usr/bin.

You may want to add /usr/bin/pj.jar to your CLASSPATH.

To run the pjscript example:

	$ pjscript example.pjs out.pdf

To run the AppendPage sample (given a PDF file, in.pdf):

	$ java com.etymon.pj.samples.AppendPage in.pdf out.pdf

Note that by default some versions of the JDK's java interpreter
allocate a maximum of 16 MB for the heap.  This may not be enough for
storing object representations of large PDF files.  You can increase
the maximum with -mx, for example:

	$ java -mx64m com.etymon.pj.samples.AppendPage in.pdf out.pdf

