Warning: imagettftext() [function.imagettftext]: Could not find/open font in /home/a2424901/public_html/index.php on line 35

前端 未结 10 2009
被撕碎了的回忆
被撕碎了的回忆 2020-12-03 21:02


        
10条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-03 21:32

    it worked for me : use absolute path

    $font = 'C:\wamp\www\Persian-txt2img\Vazir-Code.ttf';
    $font = mb_convert_encoding($font, 'big5', 'utf-8');
    
    // Add the text
    imagettftext($image, 24, 0, 64, 48, $text_color, $font, $text);
    

提交回复
热议问题