>  기사  >  백엔드 개발  >  이미지 크기를 조정하는 PHP 코드

이미지 크기를 조정하는 PHP 코드

WBOY
WBOY원래의
2016-07-25 09:03:11905검색
  1. /**********************

  2. *@filename - path to the image
  3. *@tmpname - temporary path to thumbnail
  4. *@xmax - max width
  5. *@ymax - max height
  6. */
  7. function resize_image($filename, $tmpname, $xmax, $ymax)
  8. {
  9. $ext = explode(".", $filename);
  10. $ext = $ext[count($ext)-1];

  11. if($ext == "jpg" || $ext == "jpeg")

  12. $im = imagecreatefromjpeg($tmpname);
  13. elseif($ext == "png")
  14. $im = imagecreatefrompng($tmpname);
  15. elseif($ext == "gif")
  16. $im = imagecreatefromgif($tmpname);

  17. $x = imagesx($im);

  18. $y = imagesy($im);

  19. if($x <= $xmax && $y <= $ymax)

  20. return $im;

  21. if($x >= $y) {

  22. $newx = $xmax;
  23. $newy = $newx * $y / $x;
  24. }
  25. else {
  26. $newy = $ymax;
  27. $newx = $x / $y * $newy;
  28. }

  29. $im2 = imagecreatetruecolor($newx, $newy);

  30. imagecopyresized($im2, $im, 0, 0, 0, 0, floor($newx), floor($newy), $x, $y);
  31. return $im2;
  32. }
  33. ?>

复制代码


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.