php 调整图片尺寸的解决办法

内容摘要
这篇文章主要为大家详细介绍了php 调整图片尺寸的简单示例,具有一定的参考价值,可以用来参考一下。

对php调整图片尺寸的代码对此感兴趣的朋友,看看idc笔记做的技术笔记!

/**
文章正文

这篇文章主要为大家详细介绍了php 调整图片尺寸的简单示例,具有一定的参考价值,可以用来参考一下。

对php调整图片尺寸的代码对此感兴趣的朋友,看看idc笔记做的技术笔记!

/**
 * 调整图片尺寸的代码
 *
 * @param 
 * @author 五一二笔记网: 512PiC.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;
}


/***   来自php教程(www.idcnote.com)   ***/

注:关于php 调整图片尺寸的简单示例的内容就先介绍到这里,更多相关文章的可以留意

代码注释

作者:喵哥笔记

IDC笔记

学的不仅是技术,更是梦想!