guides:programming:programmers_reference_manual:truetype_set_printer_message

TRUETYPE Set_Printer Message

The TRUETYPE message is used to set the TrueType mode.

Parameter
Description of Fields
Comments
Default
Parm1 - TRUETYPE
<1> TrueType
1=BITMAP
2=DOWNLOAD
3=SUBDEV
""

The BITMAP mode prints TrueType fonts as graphics, the DOWNLOAD mode downloads TrueType fonts as soft fonts, and the SUBDEV mode substitute device fonts for TrueType fonts. Always check the return value of Set_Printer to make sure your printer can support the TrueType mode.

Most dot-matrix printers will use the BITMAP, Hewlett-Packard printers usually use DOWNLOAD, and PostScript printers will use SUBDEV.

/*
The following example shows how to use the TRUETYPE message.
*/

declare function Set_Printer
stat = Set_Printer("INIT") ;* Start printing
stat = Set_Printer("TRUETYPE", 2) ;* download
stat = Set_Printer("TEXT", "Testing")
stat = Set_Printer("TERM") ;* End printing
 
 
  • guides/programming/programmers_reference_manual/truetype_set_printer_message.txt
  • Last modified: 2024/06/19 20:20
  • by 127.0.0.1