我很困惑,为什么使用GD库调整大小的PNG图像比原始图像大很多。
这是我用来调整图像大小的代码:
// create image from posted file
$src = imagecreatefrompng($file['tmp_name']);
// get original size of uploaded image
list($width,$height) = getimagesize($file['tmp_name']);
if($width>$maxImgWidth) {
// resize the image to maxImgWidth, maintain the original aspect ratio
$newwidth = $maxImgWidth;
$newheight=($height/$width)*$newwidth;
$newImage=imagecreatetruecolor($newwidth,$newheight);
// fill transparent with white
/*$white=imagecolorallocate($newImage, 255, 255, 255);
imagefill($newImage, 0, 0, $white);*/
// the following is to keep PNG's alpha channels
// turn off transparency blending temporarily
imagealphablending($newImage, false);
// Fill the image with transparent color
$color = imagecolorallocatealpha($newImage,255,255,255,127);
imagefill($newImage, 0, 0, $color);
// restore transparency blending
imagesavealpha($newImage, true);
// do the image resizing by copying from the original into $newImage image
imagecopyresampled($newImage,$src,0,0,0,0,$newwidth,$newheight,$width,$height);
// write image to buffer and save in variable
ob_start(); // Stdout --> buffer
imagepng($newImage,NULL,5); // last parameter is compression 0-none 9-best (slow), see also http://www.php.net/manual/en/function.imagepng.php
$newImageToSave = ob_get_contents(); // store stdout in $newImageToSave
ob_end_clean(); // clear buffer
// remove images from php buffer
imagedestroy($src);
imagedestroy($newImage);
$resizedFlag = true;
}
然后,我将$ newImageToSave另存为blob在mysql数据库中。
我试图阻止Alpha channel ,只是设置了白色背景,文件大小没有明显变化。我尝试设置“压缩”参数(0到9),但仍然比原始参数大。
示例
我将这个image(1058px * 1296px)调整为900px * 1102px。结果如下:
原始文件:328 KB
PNG(0):3,79 MB
PNG(5):564 KB
PNG(9):503 KB
任何提示如何使调整大小后的图像的文件尺寸更小均不胜感激。
--
PS:我以为可能是位深度,但是如您所见,上面的示例图像为32位,而调整大小后的图像为24位。
最佳答案
您并不是为缩小图像而调用的大多数函数,imagefill
,imagealphablending
等可能导致更大的文件大小。
要保持透明,请使用imagecreate
而不是imagecreatetruecolor
并进行简单的调整大小
$file['tmp_name'] = "wiki.png";
$maxImgWidth = 900;
// create image from posted file
$src = imagecreatefrompng($file['tmp_name']);
// get original size of uploaded image
list($width, $height) = getimagesize($file['tmp_name']);
if ($width > $maxImgWidth) {
$newwidth = $maxImgWidth;
$newheight = ($height / $width) * $newwidth;
$newImage = imagecreate($newwidth, $newheight);
imagecopyresampled($newImage, $src, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
imagepng($newImage, "wiki2.png", 5);
imagedestroy($src);
imagedestroy($newImage);
$resizedFlag = true;
}
最终大小:164KB