php图形中的错误

时间:2015-01-19 21:32:10

标签: php graphic

header("Content-type: image/jpeg");
$resim  = imagecreate(250,250); 
imagejpeg($resim);
imagedestroy($resim);
你好, 我写了上面的代码,我得到了一个错误,如图中所示。

enter image description here

2 个答案:

答案 0 :(得分:1)

您需要使用php install http://php.net/manual/en/image.installation.php

安装GD Library

答案 1 :(得分:1)

启用错误报告:

ini_set('display_errors', '1');
error_reporting(E_ALL);

在php.ini中启用此扩展并重新启动apache:

extension=php_gd2.dll