HTTP请求失败了什么! HTTP / 1.1 463是什么意思?

时间:2016-01-11 11:04:25

标签: php image http

基本上,我正在创建一个脚本,它将编辑图像并仅显示该图像的一部分,但我不断收到此错误'HTTP请求失败! HTTP / 1.1 463'。我试过在W3上搜索,但我似乎无法找到错误代码463 ,我试图在这里寻找它,但同样的事情,我似乎无法找到它。如果你能帮助我,我们将不胜感激。

谢谢。

使用的代码:

// Start Vars
$habbo = $_GET['habbo'];
$hdirection = $_GET['head_direction'];
$size = $_GET['size'];

// Define the URL
$url  = "https://www.habbo.com/habbo-imaging/avatarimage?user=".$habbo."&action=non&gesture=non&direction=3&head_direction=".$hdirection."&size=".$size."&img_format=gif";

// Define vars
$habbo = imagecreatefromgif($url);
$head = imagecreatefromgif("./head.gif");
$patch = imagecreatefromgif("./patch.gif");

$white = imagecolorallocate($head, 255, 255, 255);
$purple = imagecolorallocate($head, 200, 0, 200);
imagefilledrectangle($head, 0, 0, 55, 50, $purple);
imagecopy($head, $habbo, 0, 0, 5, 7, 64, 110);
imagecopy($head, $patch, 13, 43, 0, 0, 31, 7);
imagecolortransparent($head, $purple);
header("Content-type: image/gif");
return imagegif($head);

0 个答案:

没有答案