PHP错误:call to undefined function imagecreatetruecolor

在使用php进行绘图的过程中,出现“call to undefined function imagecreatetruecolor”错误。
可能的原因是没有安装php5-gd


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

确认是否安装了gd库,如果没有安装

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

你可能感兴趣的:(php)