Php GD有时会起作用,有时却不起作用!
我正在使用简单的测试并仍然收到错误消息。
test.php中的代码:
<?php
header('Content-type: image/png');
$x = 50;
$y = 100;
$image = imagecreatetruecolor($x,$y);
imagepng($image);
imagedestroy($image);
?>
gdtest.php中的代码:
<html>
<body>
<img src="test.php">
</body>
</html>
GD支持已启用,我正在使用捆绑的GD版本(2.1.0兼容)
你能帮帮忙吗?
答案 0 :(得分:0)
做一件事,检查你的gd
库是否安装:
if (extension_loaded('gd') && function_exists('gd_info')) {
echo "PHP GD library is installed on your web server";
}
else {
echo "PHP GD library is NOT installed on your web server";
}
确保<?php
之前没有任何内容,并在?>
文件末尾删除test.php
。