我有一个PHP脚本保存原始图像,然后调整大小 - 一个缩略图和一个较大的图像供Web查看.这种效果很好,除了一些图像质量很差.它似乎是用非常低的颜色托盘保存的.你可以在http://kalpaitch.com/index.php?filter=white看到结果- 点击标题为'white white white'的第一个缩略图
以下是用于图像重采样的代码:
function resizeImg($name, $extension, $size1, $size2) {
if (preg_match('/jpg|jpeg|JPG|JPEG/',$extension)){
$image = imagecreatefromjpeg($name);
}
if (preg_match('/gif|GIF/',$extension)){
$image = imagecreatefromgif($name);
}
$old_width = imageSX($image);
$old_height = imageSY($image);
$old_aspect_ratio = $old_width/$old_height;
if($size2 == 0){
$new_aspect_ratio = $old_aspect_ratio;
if($old_width > $old_height){
$new_width = $size1;
$new_height = $new_width / $old_aspect_ratio;
} else {
$new_height = $size1;
$new_width = $new_height * $old_aspect_ratio;
}
} elseif($size2 > 0){
$new_aspect_ratio = $size1/$size2;
//for landscape potographs
if($old_aspect_ratio >= $new_aspect_ratio) {
$x1 = round(($old_width - ($old_width * ($new_aspect_ratio/$old_aspect_ratio)))/2);
$old_width = round($old_width * ($new_aspect_ratio/$old_aspect_ratio));
$y1 = 0;
$new_width = $size1;
$new_height = $size2;
//for portrait photographs
} else{
$x1 = 0;
$y1 = 0;
$old_height = round($old_width/$new_aspect_ratio);
$new_width = $size1;
$new_height = $size2;
}
}
$new_image = imagecreatetruecolor($new_width, $new_height);
imagecopyresampled($new_image, $image, 0, 0, $x1, $y1, $new_width, $new_height, $old_width, $old_height);
return $new_image;
Run Code Online (Sandbox Code Playgroud)
非常感谢
PS [从服务器中删除照片]
这是上传代码的其余部分:
// Move the original to the right place
$result = @move_uploaded_file($image['tmp_name'], $origlocation);
// Resize the image and save the thumbnail
$new_image = resizeImg($origlocation, $extension, 500, 0);
if (preg_match("/gif/",$extension)){
imagegif($new_image, $normallocation);
} else {
imagejpeg($new_image, $normallocation);
}
// Resize the image and save the thumbnail
$new_image = resizeImg($origlocation, $extension, 190, 120);
if (preg_match("/gif/",$extension)){
imagegif($new_image, $thumblocation);
} else {
imagejpeg($new_image, $thumblocation);
}
Run Code Online (Sandbox Code Playgroud)
Pek*_*ica 24
质量损失不是降低imagecopyresampled(),而是降低JPEG压缩.不幸的是,GD的压缩算法与Photoshop不匹配 - 事实上,很少有.但是你可以改善结果:GD的默认JPG压缩级别是75的100.
你可以使用第三个参数来提高质量imagejpeg()(我假设你用于最终输出):
imagejpeg ( $new_image, null, 99);
Run Code Online (Sandbox Code Playgroud)
在90-100范围内玩游戏.文件大小将比原始图像大 - 这将是您支付的价格.但应该有可能达到相当的质量.
另外,正如John Himmelman在评论中已经说过的那样,尝试使用imagepng()更好的质量 - 当然也要以明显更大的文件大小为代价.