微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐