2

我在 Image GD 库的所有功能中都收到此错误。 在此处输入图像描述

$im = @imagecreatefromjpeg("src/bg.jpg") or die('Cannot Initialize new GD image stream');
function copyImage1($im, $dp1_name, $x1, $y1){
    $dp1 = imagecreatefromjpeg($dp1_name);
    list($w1, $h1) = getimagesize($dp1_name);
    imagecopy($im, $dp1, 35, 130, 0, 0, $w1, $h1);
}
function copyImage2($im, $dp2_name, $x2, $y2){
    $dp2 = imagecreatefromjpeg($dp2_name);
    list($w2, $h2) = getimagesize($dp2_name);
    imagecopy($im, $dp2, 618, 125, 0, 0, $w2, $h2);
}

$box = imagettfbbox(30, 0, "src/font.ttf", $user_name);
imagettftext($im, 23, 0, 53, 348, imagecolorallocate($im, 73, 184, 227), "src/font.ttf", "hello");
imagettftext($im, 23, 0, 628, 348, imagecolorallocate($im, 73, 184, 227), "src/font.ttf", "byr");
copyImage1($im, "http://graph.facebook.com/100001504336690/picture?width=153&height=143", 10, 10);
copyImage2($im, "http://graph.facebook.com/100001504336690/picture?width=138&height=158", 10, 10);

$file_name = "dump/" . rand(1000, 9999) . "-id-" . rand(1000, 9999) . ".jpg"; 
imagejpeg($im, $file_name, 80);
imagedestroy($im);


?>

这些文件在他们的地方可用,

代码工作正常,但现在无法正常工作。我不知道为什么它现在不起作用..

4

3 回答 3

1

重新启动 apache 服务器也解决了我的问题。我最近搬到了一个专用服务器,所以有一些最初的 DNS 问题。

于 2014-09-16T12:47:53.573 回答
1

运行此代码的服务器具有用于解析域名的 DNS 服务器,在本例中为graph.facebook.com. 要么是这些 DNS 服务器已关闭,要么是服务器配置错误,无法访问它应该使用的任何 DNS 服务器。

于 2013-09-19T02:59:34.530 回答
0

问题解决了,只需要重启apache。

于 2013-09-20T16:00:41.940 回答