PHP 이미지를 동일한 비율로 확대 및 축소하는 방법의 예

WBOY
풀어 주다: 2016-07-25 08:59:11
원래의
1078명이 탐색했습니다.
  1. /**

  2. * 图片等比例放大与缩小
  3. * @resizeimage
  4. * @param $srcfile 源文件尺寸
  5. * @param $mySize 要转换的尺寸
  6. * edit bbs.it-home.org
  7. * at 2013/6/7
  8. */
  9. function resizeimage($srcfile,$mySize){
  10. $size=getimagesize($srcfile);
  11. switch($size[2]){
  12. case 1:
  13. $img=imagecreatefromgif($srcfile);
  14. break;
  15. case 2:
  16. $img=imagecreatefromjpeg($srcfile);
  17. break;
  18. case 3:
  19. $img=imagecreatefrompng($srcfile);
  20. break;
  21. }
  22. //源图片的宽度和高度
  23. $oldImg['w']=imagesx($img);
  24. $oldImg['h']=imagesy($img);
  25. if ($oldImg['w']<=$mySize['w'] && $oldImg['h']<156){
  26. $rate=1;
  27. }elseif ($oldImg['w']>$mySize['w'] && $oldImg['h']<$mySize['h']){
  28. $rate=$mySize['w']/$oldImg['w'];
  29. }elseif ($oldImg['w']<$mySize['w'] && $oldImg['h']>$mySize['h']){
  30. $rate=$mySize['h']/$oldImg['h'];
  31. }elseif ($oldImg['w']>$mySize['w'] && $oldImg['h']>$mySize['h']){
  32. $rate1=$mySize['w']/$oldImg['w'];
  33. $rate2=$mySize['h']/$oldImg['h'];
  34. if ($rate1>$rate2){$rate=$rate2;}else{$rate=$rate1;}
  35. }
  36. $newImg['w']=$oldImg['w']*$rate;
  37. $newImg['h']=$oldImg['h']*$rate;
  38. return "width=".$newImg['w']." height=".$newImg['h'];
  39. }

  40. //调用示例:

  41. $mySize=array('w'=>143,'h'=>156);
  42. $imgSize=resizeimage("22.jpg",$mySize);
  43. echo "";
  44. ?>

复制代码


원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿