GD charUp()
syntax: |
gd.charUp(font, x, y, char, color) gd.charUp(font, point, char, color) |
where: |
font - Font specification
x - horizontal position of upper-left corner of character
y - vertical position of upper-left corner of character
point - point specification. See GD getPixel() for a description.
char - specified character to draw
color - color index or style to use
|
return: |
void.
|
description: |
This method is exactly the same as GD drawChar(), except that the character is drawn vertically, pointing upwards.
|
see: |
#link <gd>, GD drawChar(), GD stringUp()
|