php 降低图像大小,PHP图像重新调整大小
我有一個
PHP腳本,可以重新調整JPEG圖像的大小.但是,由于某種原因,圖像被扭曲,即使我將其編程為按比例計算x或y(取決于照片方向).質量是100,所以我不明白為什么它會使它們扭曲.我究竟做錯了什么?
編輯
原始圖像為3264px x 2448px
謝謝
代碼:
$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);
?>
總結
以上是生活随笔為你收集整理的php 降低图像大小,PHP图像重新调整大小的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 站在山顶的人生感悟66句
- 下一篇: php网页布局边框,用CSS来设置网页当