5

我有一个 PHP 脚本可以重新调整我的 JPEG 图像的大小。但是,由于某种原因,图像被扭曲了,尽管我对其进行了编程以按比例计算 x 或 y(取决于照片方向)。质量是 100,所以我不明白为什么会让它们失真。我究竟做错了什么?

编辑

原始图像为 3264px x 2448px

原图:http: //imgur.com/DOsKf&hMAOh#0

重新调整大小:http: //imgur.com/DOsKf&hMAOh#1

谢谢

编码:

<?php

$im = ImageCreateFromJpeg('IMG_0168.jpg');

//Find the original height and width.

$ox = imagesx($im);
$oy = imagesy($im);

//Now we will determine the new height and width. For this example maximum height will    
be 500px and the width will be 960px. To prevent inproper proportions we need to know 
if the image is portrate or landscape then set one dimension and caluate the other. 

$height = 500;
$width = 960;
if($ox < $oy)   #portrate
{
   $ny = $height;
   $nx = floor($ox * ($ny / $oy)); 
} 
else #landscape
{
   $nx = $width;
   $ny = floor($oy * ($nx / $ox)); 
} 

//Then next two functions will create a new image resource then copy the original image     
to the new one and resize it.

$nm = imagecreatetruecolor($nx, $ny);
imagecopyresized($nm, $im, 0, 0, 0, 0, $nx, $ny, $ox, $oy);

//Now we just need to save the new file.

imagejpeg($nm, 'smallerimagefile2.jpg', 100);

?>
4

2 回答 2

4

采用

imagecopyresampled($nm, $im, 0, 0, 0, 0, $nx, $ny, $ox, $oy);

代替

imagecopyresized($nm, $im, 0, 0, 0, 0, $nx, $ny, $ox, $oy);

解释:

imagecopyresized() 允许您快速轻松地更改图像的大小,但缺点是生成的图片质量相当低。imagecopyresampled() 采用与 imagecopyresized() 相同的参数并以相同的方式工作,但调整大小的图像被平滑。缺点是平滑需要更多的 CPU 工作,因此生成图像需要更长的时间。

功能详情:

于 2013-01-10T14:24:28.943 回答
0

这完全取决于缩放过程中使用的算法。如果您使用像 Gimp 这样的图像编辑器,您会看到它可以使用的不同插值算法(即线性、三次等)。算法越复杂,缩放后的图像效果越好,但需要的处理越多,需要的时间就越长。

我不知道您是否可以更改 GD 使用的算法,但我相信如果您使用 PHP 中的 ImageMagick 库,您可以。

于 2013-01-10T14:49:49.973 回答