Home >Backend Development >PHP Tutorial >PHP image size adjustment code_PHP tutorial

PHP image size adjustment code_PHP tutorial

WBOY
WBOYOriginal
2016-07-21 15:37:52786browse

Copy code The code is as follows:

/**********************
*@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;
}

Here is an excerpt from an article previously published by Script House. You can refer to more tips.
Collection of twenty-one practical and convenient PHP function codes

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/321871.htmlTechArticleCopy the code as follows: /********************** *@filename - path to the image *@tmpname - temporary path to thumbnail *@xmax - max width *@ymax - max height*/ function resize_...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn