PHP图像比率宽度和高度,顶部和左侧

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP图像比率宽度和高度,顶部和左侧相关的知识,希望对你有一定的参考价值。

Returns array with information like:
Input image
width 200
height 200

print_r(ratioResize('path/to/image.ext' , 100 , 50));



output:


array(
[ratio] => .5,
[height] => 50,
[width] => 50,
[left] => 25,
[top] => 25
);
  1. function ratioResize( $image , $maxwidth , $maxheight , $forcewidth=false ){
  2. $return = array();list( $w , $h ) = getimagesize( $image );
  3. if($w < $maxwidth && $h < $maxheight && !$forcewidth)return array('width'=>$w,'height'=>$h,'left'=>($maxwidth-$w)/2,'top'=>($maxheight-$h)/2,'ratio'=>1);
  4. $rw = $maxwidth/$w; $rh = $maxheight/$h; //GET HEIGHT AND WIDTH RATIO
  5. $return['ratio'] = $rw <= $rh?$rw:$rh;
  6. $return['height'] = round($h*($return['ratio']));
  7. $return['width'] = round($w*($return['ratio'])); //GET CALCULATED DIMENSIONS FROM RATIO
  8. $return['left'] = ($maxwidth - $return['width'])/2;
  9. $return['top'] = ($maxheight - $return['height'])/2;//GET CALCULATED CENTERING PIXELS
  10. return $return;
  11. }

以上是关于PHP图像比率宽度和高度,顶部和左侧的主要内容,如果未能解决你的问题,请参考以下文章

iOS 约束。如何通过约束设置图像视图高度比率等于图像比率?

使用 .NET 4.0 对“链接”变量(顶部/左侧和高度/宽度)进行双向绑定

使用固定的 div 减小图像的大小

PHP图像从顶部,底部,左侧和右侧裁剪

使用 Autolayout 根据宽度的比率设置 UIImage 高度

使用 Jquery Animate 调整图像大小