Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

ps_begin_font(3) [debian man page]

PS_BEGIN_FONT(3)					     Library Functions Manual						  PS_BEGIN_FONT(3)

NAME
PS_begin_font -- Starts a new Type3 font SYNOPSIS
#include <pslib.h> int PS_begin_font(PSDoc *psdoc, const char *fontname, int reserverd, double a, double b, double c, double d, double e, double f, const char *optlist) DESCRIPTION
PostScript supports various kinds of fonts. Type3 fonts are fonts whose glyphs are created with a subset of regular PostScript commands. This function starts a new Type3 font embedded into the document which must be closed with PS_end_font. Each glyph is created with consecu- tive calls of PS_end_glyph and PS_end_glyph. Once the new font is created, it can be used like any other font loaded with PS_findfont. The passed floating point numbers are used to set the font matrix. a and d are usually set to 0.001. The remaining numbers can be left zero. Each call of PS_begin_font must be accompanied by a call to PS_end_pattern(3). PS_begin_font has been introduced in version 0.4.0 of pslib. RETURN VALUE
Returns identifier of the font or zero in case of an error. The identifier is a positiv number greater 0. SEE ALSO
PS_end_font(3), PS_begin_glyph(3), PS_end_glyph(3) AUTHOR
This manual page was written by Uwe Steinmann uwe@steinmann.cx. PS_BEGIN_FONT(3)

Check Out this Related Man Page

PS_BEGIN_GLYPH(3)					     Library Functions Manual						 PS_BEGIN_GLYPH(3)

NAME
PS_begin_glyph -- Starts a new glyph in a Type3 font SYNOPSIS
#include <pslib.h> void PS_begin_glyph(PSDoc *psdoc, const char *glyphname, double wx, double llx, double lly, double urx, double ury) DESCRIPTION
Starts a new glyph within a Type3 font. The glyph itself can be created with a subset of the regular drawing functions like PS_lineto(3). The glyphname is abitrary but usually something found in the input encoding vector to be accessible by PS_show(3). The floating point paramters describe the widht and the lower left and upper right corner of the bounding box surrounding the glyph. Each call of PS_begin_glyph must be accompanied by a call to PS_end_glyph(3). PS_begin_glyph has been introduced in version 0.4.0 of pslib. SEE ALSO
PS_end_glyph(3), PS_begin_font(3), PS_end_font(3) AUTHOR
This manual page was written by Uwe Steinmann uwe@steinmann.cx. PS_BEGIN_GLYPH(3)
Man Page