我有这段代码用于上传图片。它使PNG扩展缩略图具有9级压缩,但图像看起来不太好。我希望只有-50%或更多的PNG压缩透明度。
$path_thumbs = "../pictures/thumbs/";
$path_big = "../pictures/";
$img_thumb_width = 140; //
$extlimit = "yes";
$limitedext = array(".gif",".jpg",".png",".jpeg",".bmp");
$file_type = $_FILES['image']['type'];
$file_name = $_FILES['image']['name'];
$file_size = $_FILES['image']['size'];
$file_tmp = $_FILES['image']['tmp_name'];
if(!is_uploaded_file($file_tmp)){
echo "choose file for upload!. <br>--<a href=\"$_SERVER[PHP_SELF]\">return</a>";
exit();
}
$ext = strrchr($file_name,'.');
$ext = strtolower($ext);
if (($extlimit == "yes") && (!in_array($ext,$limitedext))) {
echo "dissallowed! <br>--<a href=\"$_SERVER[PHP_SELF]\">return</a>";
exit();
}
$getExt = explode ('.', $file_name);
$file_ext = $getExt[count($getExt)-1];
$rand_name = md5(time());
$rand_name= rand(0,10000);
$ThumbWidth = $img_thumb_width;
if($file_size){
if($file_type == "image/pjpeg" || $file_type == "image/jpeg"){
$new_img = imagecreatefromjpeg($file_tmp);
}elseif($file_type == "image/x-png" || $file_type == "image/png"){
$new_img = imagecreatefrompng($file_tmp);
}elseif($file_type == "image/gif"){
$new_img = imagecreatefromgif($file_tmp);
}
list($width, $height) = getimagesize($file_tmp);
$imgratio = $width/$height;
if ($imgratio>1){
$newwidth = $ThumbWidth;
$newheight = $ThumbWidth/$imgratio;
}else{
$newheight = $ThumbWidth;
$newwidth = $ThumbWidth*$imgratio;
}
if (@function_exists(imagecreatetruecolor)){
$resized_img = imagecreatetruecolor($newwidth, $newheight);
}else{
die("Error: Please make sure you have GD library ver 2+");
}
imagecopyresized($resized_img, $new_img, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
ImagePng ($resized_img, "$path_thumbs/$rand_name.$file_ext,9");
ImageDestroy ($resized_img);
ImageDestroy ($new_img);
}
move_uploaded_file ($file_tmp, "$path_big/$rand_name.$file_ext");
答案 0 :(得分:1)
为了更好地调整已调整大小的图像的质量,您应该使用imagecopyresampled
的imagecopyresized
instread。
对于图像透明度,您应该查看imagesavealpha
要使其工作,您需要启用它,在调整图像大小之前还需要禁用Alpha混合。最好是把它放在imagecreatetruecolor
之后。
$resized_img = imagecreatetruecolor($newwidth, $newheight);
imagealphablending($resized_img, false);
imagesavealpha($resized_img, true);
至于大小,你的代码中有一个拼写错误
ImagePng ($resized_img,"$path_thumbs/$rand_name.$file_ext,9");
应该是
ImagePng ($resized_img, "$path_thumbs/$rand_name.$file_ext", 9);
您将压缩级别参数放入文件名而不是函数。
此处的压缩级别并不意味着它会使您的文件大小更小。这是速度和文件大小之间的权衡 您可以无损压缩文件的数量有限。 如果文件大小是一个问题,你应该使用像JPEG这样的有损压缩来压缩它。
答案 1 :(得分:0)
我认为(我没有验证)你应该使用函数imagecopyresampled而不是imagecopyresize。我认为imagecopyresampled具有更高的质量。您可能还想使用imagecreatetruecolor
开始