首頁  >  文章  >  後端開發  >  PHP GD庫處理JPG圖片大小變模糊的解決辦法

PHP GD庫處理JPG圖片大小變模糊的解決辦法

WBOY
WBOY原創
2016-07-25 08:57:351807瀏覽
  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