这是我用来显示或调整大小并使用Cache标头显示的代码的一部分。它适用于JPG图像。但是PNG图像会添加黑色背景。此类问题可在SO和Google中找到,但几乎所接受或建议的解决方案都是相同的:imagealphablending
- FALSE和imagesavealpha
- TRUE。但就我而言,没有任何作用。会出现什么问题?
$image_information=getimagesize($img);
if($image_information['mime']=='image/gif')
{
$img=imagecreatefromgif($img);
$type="gif";
$image_header="image/gif";
}
elseif($image_information['mime']=='image/png')
{
$img=imagecreatefrompng($img);
$type="png";
$image_header="image/png";
}
else
{
$img=imagecreatefromjpeg($img);
$type="jpg";
$image_header="image/jpeg";
}
$width=imagesx($img);
$height=imagesy($img);
if((isset($w))&(!isset($h))) // If Width or Height is posted, calculate the aspect dimensions
{
$h=($height/$width*$w);
}
if((isset($h))&(!isset($w)))
{
$w=(($h*$width)/$height);
}
if(!isset($w))
{
$w=$width;
}
if(!isset($h))
{
$h=$height;
}
$new_image=imagecreatetruecolor($w, $h);
if($type=="gif")
{
$background=imagecolorallocate($new_image, 0, 0, 0);
// removing the black from the placeholder
imagecolortransparent($new_image, $background);
}
elseif($type=="png")
{
imagealphablending($new_image, FALSE);
imagesavealpha($new_image, TRUE);
$transparent = imagecolorallocatealpha($new_image, 255, 255, 255, 127);
imagefilledrectangle($new_image, 0, 0, $w, $h, $transparent);
}
imagecopyresampled($new_image,$img,0,0,0,0,$w,$h,$width,$height);
$seconds_to_cache = 864000; // Add cache headers
$ts = gmdate("D, d M Y H:i:s", time() + $seconds_to_cache) . " GMT";
header("Expires: $ts");
header("Pragma: cache");
header("Cache-Control:max-age=$seconds_to_cache, must-revalidate");
header("Last-Modified: ".gmdate("D, d M Y H:i:s", $lastModified)." GMT");
header('Content-Type: $image_header');
if($type="jpg")
imagejpeg($new_image, NULL, 75);
elseif($type=="png")
imagepng($new_image, NULL, 75);
elseif($type=="gif")
imagegif($new_image, NULL);
imagedestroy($new_image);
修改:我将图片保存到我的系统,尝试打开,
答案 0 :(得分:0)
您没有从原始图像中保存Alpha通道。
添加
imagealphablending($img, true);
正好在以下代码上方
$width=imagesx($img);
$height=imagesy($img);
编辑:
然后尝试这个
$transparent = imagecolortransparent($new_image, imagecolorallocatealpha($new_image, 255, 255, 255, 127));
imagefill($new_image, 0, 0, $transparent);
而不是带有填充矩形的透明代码
答案 1 :(得分:0)
我建议您使用编码良好的类来进行图像处理。除了上传操作之外,Verot.net's php class for image upload还提供了干燥,结构良好的API中的各种图像处理功能。最后,您的代码将更加便携,面向未来。