5

JPEG 画像のサイズを変更する PHP スクリプトがあります。しかし、何らかの理由で、(写真の向きに応じて) 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

Use

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

Instead of

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

Explanation:

imagecopyresized() allows you to change the size of an image quickly and easily, but has the downside of producing fairly low-quality pictures. imagecopyresampled() which takes the same parameters as imagecopyresized() and works in the same way with the exception that the resized image is smoothed. The downside is that the smoothing takes more CPU effort, so the image takes longer to produce.

Details of the functions:

于 2013-01-10T14:24:28.943 に答える
0

それはすべて、スケーリング プロセス中に使用されるアルゴリズムにかかっています。Gimp のような画像エディタを使用すると、使用できるさまざまな補間アルゴリズム (線形、3 次など) が表示されます。アルゴリズムが複雑になればなるほど、スケーリングされた画像の結果は向上しますが、より多くの処理が必要になり、より長い時間が必要になります。

GD が使用するアルゴリズムを変更できるかどうかはわかりませんが、PHP で ImageMagick ライブラリを使用すれば変更できると思います。

于 2013-01-10T14:49:49.973 に答える