PHP图像重新调整大小

我有一个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);

?>

解决方法:

使用

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工作量,因此生成图像需要更长的时间.

功能细节:

> imagecopyresampled:http://php.net/manual/en/function.imagecopyresampled.php
> imagecopyresized:http://php.net/manual/en/function.imagecopyresized.php

相关文章

统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
前言 之前做了微信登录,所以总结一下微信授权登录并获取用户...
FastAdmin是我第一个接触的后台管理系统框架。FastAdmin是一...
之前公司需要一个内部的通讯软件,就叫我做一个。通讯软件嘛...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...