printer_create_font

(no version information, might be only in CVS)

printer_create_font -- 新規フォントを作成する

説明

mixed printer_create_font ( string face, int height, int width, int font_weight, bool italic, bool underline, bool strikeout, int orientaton)

The function creates a new font and returns a handle to it. A font is used to draw text. For an example see printer_select_font() . face must be a string specifying the font face. height specifies the font height, and width the font width. The font_weight specifies the font weight (400 is normal), and can be one of the following predefined constants.



italic can be TRUE or FALSE , and sets whether the font should be italic.

underline can be TRUE or FALSE , and sets whether the font should be underlined.

strikeout can be TRUE or FALSE , and sets whether the font should be striked out.

orientation specifies a rotation. For an example see printer_select_font() .