AZ logo

CTAN directory: /graphics/hpgl2ps

You can get the contents of this directory bundled as a zip file.

Packages in this directory:

Identifier Caption
hpgl2ps Translate HPGL to PostScript.

Files

Name Size* Date UTC Notes
Makefile 1 KiB 1992-Sep-27
README 1 KiB 1992-Sep-27 Shown below
changesizes.c 2 KiB 1992-Sep-27
circle.c 2 KiB 1992-Sep-27
defn.h 2 KiB 1992-Sep-27
dxy2ps.c 2 KiB 1992-Sep-27
dxy2ps.man 3 KiB 1992-Sep-27
dxycom.c 2 KiB 1992-Sep-27
end_draw.c 192 bytes 1992-Sep-27
foo.ps 5 KiB 1992-Sep-27
getval.c 1 KiB 1992-Sep-27
hpgl2ps.c 2 KiB 1992-Sep-27
hpgl2ps.man 3 KiB 1992-Sep-27
hpglcom.c 11 KiB 1992-Sep-27
linesize.c 262 bytes 1992-Sep-27
linetype.c 3 KiB 1992-Sep-27
manualfeed.c 1 KiB 1992-Sep-27
plotcoords.c 1 KiB 1992-Sep-27
plotdot.c 1 KiB 1992-Sep-27
plotinit.c 1 KiB 1992-Sep-27
plotps.c 1 KiB 1992-Sep-27
ps_macros.c 4 KiB 1992-Sep-27
rectangle.c 1 KiB 1992-Sep-27
test1.dxy 255 bytes 1992-Sep-27
test1.hpgl 1 KiB 1992-Sep-27
textps.c 2 KiB 1992-Sep-27
viewport.c 1 KiB 1992-Sep-27

  *File sizes in kibibytes.

Contents of README

There are two filters in this package which are based on the Roland
plotter command set.

1. DXY: A simple command set which is used with all DXY plotters

2. RD-GL: This command set is a superset of the HP (Hewlet Packard)
   graphics language.

Not all the commands of DXY or RD-GL (HPGL) are implemented (approx 95%
are) and those commands that are not are skipped and a warning given.
It is very easy to add to this filter if a particular unimplemented
command is desired.

If you wish to implement a command go to the relevant portion in the
command switch "dxycom.c" or "hpglcom.c" and call an appropriate user
written procedure.  (You will need a good knowledge of writing
PostScript programs)

The filters use the the procedure "getopt" which is used to interpret
command line options and arguments and is normally available on 4.3 bsd
and Sys V Unix. For those sites running 4.1 or 4.2 it may be available
as a local library and must be written into the Makefile.

IF YOU DONT HAVE GETOPT YOU WILL HAVE REWRITE THE CODE THAT INTERPRETS
COMMAND LINE OPTIONS AND ARGUMENTS.

NOTE 1: The method of writing text is not fully compatible with HPGL
and will be changed at a later date.

NOTE 2: The PostScript macros are written into a C procedure to allow
each filter to be a single stand alone program. These macros can easily
be incorporated into other filter programs.

I have written some test procedures for the testing of each filter they
are "test1.hpgl" for hpgl2ps and "test1.dxy" for dxy2ps.

Don McCormick.