我的問題是Q標題。如何在imagestring()中加載我的自定義字體?
我試過http://www.php.net/manual/en/function.imageloadfont.php和: imageloadfont();
,但我看不出有什麼變化,我得到錯誤:
Warning: imageloadfont(): gd warning: product of memory allocation multiplication would exceed INT_MAX, failing operation gracefully in E:\xampp\htdocs\test\texts\text01.php on line 3
Warning: imageloadfont(): Error reading font, invalid font header in E:\xampp\htdocs\test\texts\text01.php on line 3
編輯: My font。
只能負載TrueType字體使用GD。你能提供你的字體文件嗎?謝謝。 – 2014-10-08 12:56:49
假設你的字體是TrueType(.ttf),你應該使用['imagettftext()'](http://php.net/manual/en/function.imagettftext.php),而不是'imagestring()'。如果你真的想使用'imagestring()',那麼你的自定義字體與['imageloadfont()'](http://php.net/manual/en/function.imageloadfont)中列出的字體文件格式規範不匹配.php)手冊頁。 – timclutton 2014-10-08 13:55:04
看看我的編輯請 – Nastary 2014-10-08 14:37:59