Documentation Project 1
|
__cdecl IMAGE_PROC void PutStringInvertVerticalFontEx(Image pImage, S_32 x, S_32 y, CDATA color, CDATA background, CTEXTSTR pc, _32 nLen, Font font); #define PutStringInvertVertical( pi, x, y, fore, back, pc ) PutStringInvertVerticalFontEx( pi, x, y, fore, back, pc, strlen(pc), NULL ) #define PutStringInvertVerticalEx( pi, x, y, fore, back, pc, nLen ) PutStringInvertVerticalFontEx( pi, x, y, fore, back, pc, nLen, NULL ) #define PutStringInvertVerticalFont( pi, x, y, fore, back, pc, font ) PutStringInvertVerticalFontEx( pi, x, y, fore, back, pc, strlen(pc), font )
Parameters |
Description |
Image pImage |
image to draw string into |
S_32 x |
x position of the string |
S_32 y |
y position of the string |
CDATA color |
color of the data drawn in the font |
CDATA background |
color of the data not drawn in the font |
CTEXTSTR pc |
pointer to constant text |
_32 nLen |
length of text to output |
Font font |
the font to use. NULL use an internal default font. |
Outputs a string in the specified font, from the specified point, text is drawn from the point up, with the characters aligned with the top to the left; it goes up from the point. the point becomes the bottom left of the rectangle output.
Copyright (c) 2010. All rights reserved.
|
What do you think about this topic? Send feedback!
|