What are the common pitfalls to avoid when using TrueType fonts with PHP's image functions like ImageFTText?

One common pitfall to avoid when using TrueType fonts with PHP's image functions like ImageFTText is not specifying the correct font file path. Make sure to provide the full path to the TrueType font file in your code to ensure it is loaded correctly.

// Specify the full path to the TrueType font file
$fontFile = '/path/to/font.ttf';

// Load the TrueType font file
imageloadfont($fontFile);