当$ image / $ imgsrc在其路径上有空格时,以下代码返回eroor。例如www.domain.com/my pic.gif
但是,如果您在其中添加%20,则可以正常工作。如何修改图像,以便在没有编辑路径的情况下图像有正确的运行空间?
谢谢!
<?php function resizeImg($imgsrc ,$maxW='*', $maxH='*', $allowScaleUp=0, $returnHTML="alt='image'"){
if($s=getimagesize($imgsrc)){
$oW=$s[0];$oH=$s[1];
if(($oW>$maxW && $maxW!='*') || ($oH>$maxH && $maxH!='*') || $allowScaleUp){//if resize is needed:
if($maxW && $maxH=='*'){ //constrain by width:
$proportion=$oH/$oW;
$w=$maxW;
$h=$maxW*$proportion;
}else if($maxH && $maxW=='*'){ //constrain by height:
$proportion=$oW/$oH;
$h=$maxH;
$w=$maxH*$proportion;
}else if(!$maxW && $maxH){ //constrain by smallest side:
return($oW>$oH ? resizeImg($imgsrc, '*', $maxH, $allowScaleUp, $returnHTML) : resizeImg($imgsrc, $maxW, '*', $allowScaleUp, $returnHTML));
}else if($maxW && !$maxH){ //constrain by largest side:
return($oW>$oH ? resizeImg($imgsrc, $maxW, '*', $allowScaleUp, $returnHTML) : resizeImg($imgsrc, '*', $maxH, $allowScaleUp, $returnHTML));
}else{
return($maxW>$maxH ? resizeImg($imgsrc, '*', $maxH, $allowScaleUp, $returnHTML) : resizeImg($imgsrc, $maxW, '*', $allowScaleUp, $returnHTML));
}
}else{
$w=$oW;$h=$oH;
}
//echo "orig: ".$oW."x:".$oH."<br />max: ".$maxW."x".$maxH."<br />new: ".$w."x".$h."<br />"; //debug
$w=round($w); $h=round($h);
return ($returnHTML ? "<img src='$imgsrc' width='$w' height='$h' $returnHTML />" : array(0=>$w,1=>$h,"width"=>$w,"height"=>$h));
}else{//file does not exist or is not an image:
return false;
}
}
?>
<?php echo resizeImg($picture,250,'*') ?>
答案 0 :(得分:1)
是的,如果您使用URI绑定,getimagesize需要一个正确的,有效的URI。因此,请使用%20
(see example #3)替换空格。
urlencode
对各种实体进行编码,因此我的推荐是:if ($s = getimagesize(str_replace(' ', '%20', $imgsrc))) {