这篇文章主要为大家详细介绍了php 调整图片尺寸的简单示例,具有一定的参考价值,可以用来参考一下。
对php调整图片尺寸的代码感兴趣的小伙伴,下面一起跟随四海网的小编两巴掌来看看吧!
/**
* 调整图片尺寸的代码
*
* @param
* @author 五一二笔记网: q1010.com
*@filename - path to the image
*@tmpname - temporary path to thumbnail
*@xmax - max width
*@ymax - max height
*/
function resize_image($filename, $tmpname, $xmax, $ymax)
{
$ext = explode(".", $filename);
$ext = $ext[count($ext)-1];
if($ext == "jpg" || $ext == "jpeg")
$im = imagecreatefromjpeg($tmpname);
elseif($ext == "png")
$im = imagecreatefrompng($tmpname);
elseif($ext == "gif")
$im = imagecreatefromgif($tmpname);
$x = imagesx($im);
$y = imagesy($im);
if($x <= $xmax && $y <= $ymax)
return $im;
if($x >= $y) {
$newx = $xmax;
$newy = $newx * $y / $x;
}
else {
$newy = $ymax;
$newx = $x / $y * $newy;
}
$im2 = imagecreatetruecolor($newx, $newy);
imagecopyresized($im2, $im, 0, 0, 0, 0, floor($newx), floor($newy), $x, $y);
return $im2;
}
/*** 来自四海网(www.q1010.com) ***/
本文来自:http://www.q1010.com/173/676-0.html
注:关于php 调整图片尺寸的简单示例的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:图片尺寸
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。