>  기사  >  백엔드 개발  >  PHP GD 라이브러리 처리 JPG 이미지 크기가 흐려지는 솔루션

PHP GD 라이브러리 처리 JPG 이미지 크기가 흐려지는 솔루션

WBOY
WBOY원래의
2016-07-25 08:57:351845검색
  1. header("Content-type: image/png");

  2. $temp_width = 150;

  3. $temp_height = 180;

  4. $img_path = "test.jpg";

  5. $img_path2 = "test2.jpg";

  6. $im = @imagecreatefromjpeg($img_path);

  7. $temp_img=imagecreatetruecolor($temp_width,$temp_height);

  8. imagecopyresampled($temp_img,$im,0,0,0,0,$temp_width,$temp_height,$temp_width,$temp_height);
  9. //echo $temp_img;
  10. //imagejpeg($temp_img);
  11. imagepng($im,$img_path2);

  12. /*

  13. imagecopyresized($temp_img,$im,0,0,0,0,$temp_width,$temp_height,$srcW,$srcH);
  14. $ni=imagecreatetruecolor($width,$height);
  15. imagecopyresampled
  16. $res = function_exists('imagecreatetruecolor');
  17. var_dump($res);
  18. */
  19. ?>

复制代码


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