imageloadfont
PHP 4, PHP 5, PHP 7, PHP 8
imageloadfont - Load a new font
Manual
imageloadfont(
string$filename ): GdFont|false
imageloadfont loads a user-defined bitmap and returns its identifier.
Parameters
- filename
-
The font file format is currently binary and architecture dependent. This means you should generate the font files on the same type of CPU as the machine you are running PHP on.
Font file format
byte position C data type description byte 0-3 int number of characters in the font byte 4-7 int value of first character in the font (often 32 for space) byte 8-11 int pixel width of each character byte 12-15 int pixel height of each character byte 16- char array with character data, one byte per pixel in each character, for a total of (nchars*width*height) bytes.
Return Values
Returns an GdFont instance, or false on failure.
Changelog
Version | Description |
8.1.0 | Returns an GdFont instance now; previously, an int was returned. |