function resize_image($filename, $tmpname, $xmax, $ymax) <br />{ <br /> $ext = explode(".", $filename); <br /> $ext = $ext[count($ext)-1]; <br /> <br /> if($ext == "jpg" || $ext == "jpeg") <br /> $im = imagecreatefromjpeg($tmpname); <br /> elseif($ext == "png") <br /> $im = imagecreatefrompng($tmpname); <br /> elseif($ext == "gif") <br /> $im = imagecreatefromgif($tmpname); <br /> <br /> $x = imagesx($im); <br /> $y = imagesy($im); <br /> <br /> if($x <= $xmax && $y <= $ymax) <br /> return $im; <br /> <br /> if($x >= $y) { <br /> $newx = $xmax; <br /> $newy = $newx * $y / $x; <br /> } <br /> else { <br /> $newy = $ymax; <br /> $newx = $x / $y * $newy; <br /> } <br /> <br /> $im2 = imagecreatetruecolor($newx, $newy); <br /> imagecopyresized($im2, $im, 0, 0, 0, 0, floor($newx), floor($newy), $x, $y); <br /> return $im2; <br />}
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号