下面的代碼工作在我的筆記本電腦,但遠程服務器上不起作用:裁剪圖像
<?php
error_reporting(E_ALL);
ini_set('display_errors', '1');
$filename = "../../content/".base64_decode($_GET["file"]);
$ext = pathinfo($filename, PATHINFO_EXTENSION);
if ($ext=="jpg" || $ext=="jpeg") {
$image_s = imagecreatefromjpeg($filename);
} else if ($ext=="png") {
$image_s = imagecreatefrompng($filename);
}
$width = imagesx($image_s);
$height = imagesy($image_s);
$newwidth = 285;
$newheight = 232;
$image = imagecreatetruecolor($newwidth, $newheight);
imagealphablending($image,true);
imagecopyresampled($image,$image_s,0,0,0,0,$newwidth,$newheight,$width,$height);
// create masking
$mask = imagecreatetruecolor($width, $height);
$mask = imagecreatetruecolor($newwidth, $newheight);
$transparent = imagecolorallocate($mask, 255, 0, 0);
imagecolortransparent($mask, $transparent);
imagefilledellipse($mask, $newwidth/2, $newheight/2, $newwidth, $newheight, $transparent);
$red = imagecolorallocate($mask, 0, 0, 0);
imagecopy($image, $mask, 0, 0, 0, 0, $newwidth, $newheight);
imagecolortransparent($image, $red);
imagefill($image,0,0, $red);
// output and free memory
header('Content-type: image/png');
imagepng($image);
imagedestroy($image);
imagedestroy($mask);
?>
它顯示了我的筆記本電腦下面的圖片: http://i.stack.imgur.com/Aai1r.png
這它是如何顯示在遠程服務器上的: http://i.stack.imgur.com/77fbV.png
您怎麼看?什麼是問題?
你的服務器上的GD版本是否與本地的env不同?這幾乎是肯定的問題。它也可能與透明度有關。 – haltabush 2012-03-26 22:06:03
本地環境擁有GD 2.0版本和服務器2.0.38。兩者都支持透明。 – 2012-03-26 22:11:51