php png亂碼的解決方法:先找到並開啟執行出錯的PHP程式碼檔案;然後把html程式碼,也就是「html,head,body」程式碼全部刪除即可。
推薦:《PHP影片教學》
解決關於php GD中png圖象顯示亂碼
問題:
程式碼:
<?php $im = imagecreate(100, 30); $bg = imagecolorallocate($im, 255, 255, 255); $textcolor = imagecolorallocate($im, 0, 0, 255); imagestring($im, 5, 0, 0, "Hello world!", $textcolor); header("Content-type: image/png"); imagepng($im); ?>
運行結果:
Fatal error: Call to undefined function imagecreate() in D:/wamp/www/index.php on line 2
解決方案:
把html程式碼(html ,head,body)這些程式碼全部刪除,就可以了。
以上是如何解決php png亂碼問題的詳細內容。更多資訊請關注PHP中文網其他相關文章!