GD stringUp()
syntax: |
gd.stringUp(font, x, y, char, color) gd.stringUp(font, point, char, color) |
where: |
font - Font specification to use
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.
string - The string to draw.
color - color index or style to use for string
|
return: |
void.
|
description: |
This method is exactly the same as GD string(), except that this method draws the string vertically, facing upwards.
|
see: |
#link <gd>, GD charUp(), GD string()
|