c73823892aa5384025c64a22b5da8e4332d38efd braney Wed Sep 30 14:53:48 2020 -0700 get the postscript driver to allow font specification. Use the correct names for fonts. diff --git src/inc/psGfx.h src/inc/psGfx.h index 5c830a5..13c5941 100644 --- src/inc/psGfx.h +++ src/inc/psGfx.h @@ -112,17 +112,19 @@ double x3, double y3, double x4, double y4); /* Draw Bezier curve specified by 4 points: first (p1) and last (p4) * and 2 control points (p2, p3) */ void psSetDash(struct psGfx *ps, boolean on); /* Set dashed line mode on or off. If set on, show two points marked, with one point of space */ char * convertEpsToPdf(char *epsFile); /* Convert EPS to PDF and return filename, or NULL if failure. */ void psLineTo(struct psGfx *ps, double x, double y); /* Draw line from current point to given point, * and make given point new current point. */ void psCircle(struct psGfx *ps, double x, double y, double rad, boolean filled); + +void psSetFont(struct psGfx *ps, char *fontName); #endif /* PSGFX_H */