以下代码适用于我的笔记本电脑,但无法在远程服务器上运行:
<?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
你怎么看?有什么问题?答案 0 :(得分:11)
更改了行:
imagecopy($image, $mask, 0, 0, 0, 0, $newwidth, $newheight);
为:
imagecopymerge($image, $mask, 0, 0, 0, 0, $newwidth, $newheight,100);
答案 1 :(得分:1)
我认为如何调试http://blog.regehr.org/archives/199的基本阅读对您有用,并帮助您解决问题
答案 2 :(得分:0)
我认为你可能遇到filepath问题。检查pathinfo是否返回有效的扩展名,并在$ filename声明之后添加,以检查它是否存在且可读
if(!is_file($file) || !is_readable($file)){ die('Readable file not found');}