What are the potential causes of the error "Fatal error: Call to undefined function: imagettftext()" in PHP?

The error "Fatal error: Call to undefined function: imagettftext()" occurs when the imagettftext function is called in PHP, but the GD library with FreeType support is not enabled. To solve this issue, you need to enable the GD library with FreeType support in your PHP configuration.

// Enable GD library with FreeType support
extension=gd
extension=gd2