为什么php-gd不起作用?不是BOM,不是错误代码,启用了php-gd

时间:2014-05-07 21:34:08

标签: php html php-gd

任何php-gd,对于这个例子:

<?php
header("Content-type: image/gif"); 
$imagen = imagecreate(300,100); 
$bgcolor = imagecolorallocate($imagen,230,230,230);
$negro = imagecolorallocate($imagen,0,0,0);
imagesetpixel($imagen,30,30,$negro);
imageline($imagen,30,80,270,80,$negro);
imagegif($imagen);
imagedestroy($imagen);
?>

我有2台服务器,其中一台服务器中的相同文件正确显示,另一台服务器不再加载......

在两台服务器中,phpinfo显示相同的数据启用,直到最近才在php-gd中工作。我没有收到任何错误消息。

enter image description here

有什么想法吗?为什么会发生以及如何解决?

0 个答案:

没有答案