PHP Fatal error: Call to undefined function imagettftext()

后端 未结 5 1754
感动是毒
感动是毒 2020-12-05 09:58

Why am I getting the error PHP Fatal error: Call to undefined function imagettftext() on line 29?



        
5条回答
  •  一个人的身影
    2020-12-05 10:11

    For a Docker container with PHP 7.4, use these commands to install the extension:

    docker-php-ext-configure gd --with-freetype
    docker-php-ext-install gd
    

    Using the previous approach results in:

    configure: error: unrecognized options: --with-freetype-dir
    

    Relevant comment.

提交回复
热议问题