php 按最大尺寸 等比例缩放图片_Ruby_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > Ruby > php 按最大尺寸 等比例缩放图片

php 按最大尺寸 等比例缩放图片

 2011/1/2 10:31:48  myfreespace  http://myfreespace.javaeye.com  我要评论(0)
  • 摘要:$maxWidth=180;//最大宽度$maxHeight=125;//最大高度$iSuofang=$arrPicwh['w']/$arrPicwh['h'];//原图的比例$iSuo=$arrPicwh['h']/$arrPicwh['w'];if($arrPicwh['w']>$arrPicwh['h'])//判断原图的宽高那个大{$dstW=$maxWidth;$dstH=$maxWidth*$iSuo;}else{$dstH=$maxHeight
  • 标签:PHP 图片
		    	$maxWidth = 180;//最大宽度
		    	$maxHeight = 125;   //最大高度 
	
		        $iSuofang = $arrPicwh['w']/$arrPicwh['h'];//原图的比例
		        $iSuo = $arrPicwh['h']/$arrPicwh['w'];
		        if ($arrPicwh['w'] > $arrPicwh['h'])//判断原图的宽高那个大
		        {
		        	$dstW = $maxWidth;
		        	$dstH = $maxWidth * $iSuo;
		        }else 
		        {
		        	$dstH = $maxHeight;
		        	$dstW = $maxHeight * $iSuofang;
		        	
		        }
?
发表评论
用户名: 匿名