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