1. 程式人生 > >PHP錯誤:call to undefined function imagecreatetruecolor

PHP錯誤:call to undefined function imagecreatetruecolor

在使用php進行繪圖的過程中,出現“call to undefined function imagecreatetruecolor”錯誤。
可能的原因是沒有安裝php5-gd

<?php
$testGD = get_extension_funcs("gd"); // Grab function list 
if (!$testGD){ echo "GD not even installed."; exit; }
echo"<pre>".print_r($testGD,true)."</pre>";

確認是否安裝了gd庫,如果沒有安裝

#Ubuntu
apt-get
-y update && apt-get -y install php-gd