Display coordinates
The string to display
・If an Int is specified instead of a string, the value is treated as a character code and calculates the drawing width for one character of the specified code.
The type of font to reference: 8 or 16 can be specified.
・16 is the default.
Display magnification: 1 to 32767
・If not specified, 1,1 (the same size) is specified.
Text color to draw
・See GCOLOR for a description of color codes.
・If not specified, the color set in GCOLOR is used.
0 | Simple Drawing | #G_NORMAL |
1 | Simple Drawing when transparency is not 0 | #G_NORMAL2 |
2 | Translucent Drawing | #G_ALPHA |
3 | Translucent Drawing considering transparency of drawing destination | #G_ALPHA2 |
4 | Addition Drawing | #G_ADD |
・1 is the default.
Space between characters (in pixels): 0 to 64
・If not specified, it's 1.
GPUTCHRP 10,10,"ABC" GPUTCHRP 10,10,&H55
The string to calculate the display width
・If an Int is specified instead of a string, the value is treated as a character code and calculates the drawing width for one character of the specified code.
The type of font to reference: 8 or 16 can be specified.
・16 is the default.
Display magnification: 1 to 32767
・If not specified, 1 (the same size) is specified.
Space between characters (in pixels): 0 to 64
・If not specified, it's 1.
The drawing width (pixels) when drawing with GPUTCHRP
W=GPUTCHRP("ABC") W2=GPUTCHRP(&H55,16,1,2)