PHP错误:call to undefined function imagecreatetruecolor

来源:互联网 发布:万网域名申请流程 编辑:程序博客网 时间:2024/06/05 11:02

在使用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库,如果没有安装

#Ubuntuapt-get -y update && apt-get -y install php-gd
0 0
原创粉丝点击