PHP GD库处理JPG图片大小变模糊的解决办法

WBOY
发布: 2016-07-25 08:57:35
原创
1812 人浏览过
  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. ?>

  20. PHP GD库处理JPG图片大小变模糊的解决办法
复制代码


来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!