|
LibGd 2.4.0-dev
GD Graphics library
|
Functions | |
| gdFontPtr | gdFontGetGiant (void) |
| Gets the built-in giant font. | |
| gdFontPtr | gdFontGetLarge (void) |
| Gets the built-in large font. | |
| gdFontPtr | gdFontGetMediumBold (void) |
| Gets the built-in medium bold font. | |
| gdFontPtr | gdFontGetSmall (void) |
| Gets the built-in small font. | |
| gdFontPtr | gdFontGetTiny (void) |
| Gets the built-in tiny font. | |
| void | gdImageChar (gdImagePtr im, gdFontPtr f, int x, int y, int c, int color) |
| Draws a single character. | |
| void | gdImageCharUp (gdImagePtr im, gdFontPtr f, int x, int y, int c, int color) |
| Draws a single character rotated 90 degrees counterclockwise. | |
| void | gdImageString (gdImagePtr im, gdFontPtr f, int x, int y, unsigned char *s, int color) |
| Draws a character string. | |
| void | gdImageStringUp (gdImagePtr im, gdFontPtr f, int x, int y, unsigned char *s, int color) |
| Draws a string rotated 90 degrees counterclockwise. | |
| void | gdImageString16 (gdImagePtr im, gdFontPtr f, int x, int y, unsigned short *s, int color) |
| Draws a character string with 16-bit characters. | |
| void | gdImageStringUp16 (gdImagePtr im, gdFontPtr f, int x, int y, unsigned short *s, int color) |
| Draws a string rotated 90 degrees counterclockwise with 16-bit characters. | |
| void gdImageChar | ( | gdImagePtr | im, |
| gdFontPtr | f, | ||
| int | x, | ||
| int | y, | ||
| int | c, | ||
| int | color | ||
| ) |
Draws a single character.
| im | The image to draw onto. |
| f | The raster font. |
| x | The x coordinate of the upper left pixel. |
| y | The y coordinate of the upper left pixel. |
| c | The character. |
| color | The color. |
Variants gdImageCharUp
| void gdImageCharUp | ( | gdImagePtr | im, |
| gdFontPtr | f, | ||
| int | x, | ||
| int | y, | ||
| int | c, | ||
| int | color | ||
| ) |
Draws a single character rotated 90 degrees counterclockwise.
| im | The image to draw onto. |
| f | The raster font. |
| x | The x coordinate of the upper left pixel. |
| y | The y coordinate of the upper left pixel. |
| c | The character. |
| color | The color. |
| void gdImageString | ( | gdImagePtr | im, |
| gdFontPtr | f, | ||
| int | x, | ||
| int | y, | ||
| unsigned char * | s, | ||
| int | color | ||
| ) |
Draws a character string.
| im | The image to draw onto. |
| f | The raster font. |
| x | The x coordinate of the upper left pixel. |
| y | The y coordinate of the upper left pixel. |
| s | The character string. |
| color | The color. |
Variants:
| void gdImageString16 | ( | gdImagePtr | im, |
| gdFontPtr | f, | ||
| int | x, | ||
| int | y, | ||
| unsigned short * | s, | ||
| int | color | ||
| ) |
Draws a character string with 16-bit characters.
| im | The image to draw onto. |
| f | The raster font. |
| x | The x coordinate of the upper left pixel. |
| y | The y coordinate of the upper left pixel. |
| s | The character string (16-bit). |
| color | The color. |
| void gdImageStringUp | ( | gdImagePtr | im, |
| gdFontPtr | f, | ||
| int | x, | ||
| int | y, | ||
| unsigned char * | s, | ||
| int | color | ||
| ) |
Draws a string rotated 90 degrees counterclockwise.
| im | The image to draw onto. |
| f | The raster font. |
| x | The x coordinate of the upper left pixel. |
| y | The y coordinate of the upper left pixel. |
| s | The string. |
| color | The color. |
| void gdImageStringUp16 | ( | gdImagePtr | im, |
| gdFontPtr | f, | ||
| int | x, | ||
| int | y, | ||
| unsigned short * | s, | ||
| int | color | ||
| ) |
Draws a string rotated 90 degrees counterclockwise with 16-bit characters.
| im | The image to draw onto. |
| f | The raster font. |
| x | The x coordinate of the upper left pixel. |
| y | The y coordinate of the upper left pixel. |
| s | The string (16-bit). |
| color | The color. |