获取图片宽高,根据maxW和maxH自动居中

作者:夏雨芭蕉时间:2016-05-10 13:10:13 浏览量:

/**
* 获取图片宽高,根据maxW和maxH自动居中

* $imgName  图片完整路径

* $maxW,$maxH,图片的最大宽度和最大高度

* 返回:src='图片路径'  style=' width:px; height:px; margin-top:px;'
*/
function imgCenter($imgName = "", $maxW = 0, $maxH = 0) {
    
if($imgName != ""){
     if( !stripos($imgName,$_SERVER['HTTP_HOST']) && !stripos($imgName,"网站域名"))
          $imgsrc="http://".$_SERVER['HTTP_HOST'].$imgName;
     else $imgsrc =$imgName ;
}
else
$imgsrc="http://".$_SERVER['HTTP_HOST']."/statics/default/images/defaultpic.gif"; //默认图片,需替换

$image_size   =   getimagesize($imgsrc);
$w= $image_size[0];  //600
$h= $image_size[1];  //445

$temp=number_format($w/$h,2);   //1.348314606741573
if($w>$maxW){
     $w=$maxW;
     $h=ceil($w/$temp);
}
if($h>$maxH){
     $h=$maxH;
     $w=ceil($h*$temp);
}
if($w==0){
$w=$maxW;
$h=$maxH;    
}
$topPX=ceil(($maxH-$h)/2);
return "src='".$imgsrc."' style='width:".$w."px; height:".$h."px; margin-top:".$topPX."px;' ";    
    
}


Copyright © 2016 Allister All Rights Reserved