> 백엔드 개발 > PHP 튜토리얼 > PHP를 사용하여 동일한 비율로 이미지 확대 및 축소

PHP를 사용하여 동일한 비율로 이미지 확대 및 축소

WBOY
풀어 주다: 2016-07-25 08:43:14
원래의
1229명이 탐색했습니다.
  1. function resizeimage($srcfile,$mySize){
  2. $size=getimagesize($srcfile);
  3. switch($size[2]){
  4. case 1:
  5. $img=imagecreatefromgif($srcfile);
  6. break;
  7. case 2:
  8. $img=imagecreatefromjpeg($srcfile);
  9. break;
  10. case 3:
  11. $img=imagecreatefrompng($srcfile);
  12. break;
  13. }
  14. //源图片的宽度和高度
  15. $oldImg['w']=imagesx($img);
  16. $oldImg['h']=imagesy($img);
  17. if ($oldImg['w']<=$mySize['w'] && $oldImg['h']<156){
  18. $rate=1;
  19. }elseif ($oldImg['w']>$mySize['w'] && $oldImg['h']<$mySize['h']){
  20. $rate=$mySize['w']/$oldImg['w'];
  21. }elseif ($oldImg['w']<$mySize['w'] && $oldImg['h']>$mySize['h']){
  22. $rate=$mySize['h']/$oldImg['h'];
  23. }elseif ($oldImg['w']>$mySize['w'] && $oldImg['h']>$mySize['h']){
  24. $rate1=$mySize['w']/$oldImg['w'];
  25. $rate2=$mySize['h']/$oldImg['h'];
  26. if ($rate1>$rate2){$rate=$rate2;}else{$rate=$rate1;}
  27. }
  28. $newImg['w']=$oldImg['w']*$rate;
  29. $newImg['h']=$oldImg['h']*$rate;
  30. return "width=".$newImg['w']." height=".$newImg['h'];
  31. }
复制代码

应用实例
  1. $mySize=array('w'=>143,'h'=>156);
  2. $imgSize=resizeimage("22.jpg",$mySize);
  3. echo "";
复制代码

야마토, 등분비, PHP


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