首页 > 后端开发 > php教程 > 又一个生成图片缩略图的函数

又一个生成图片缩略图的函数

WBOY
发布: 2016-07-25 09:07:15
原创
908 人浏览过
  1. function photoThumb($p_thumb_file, $p_photo_file, $p_max_size, $p_quality = 75) {

  2. $pic = @imagecreatefromjpeg($p_photo_file);
  3. if ($pic) {

  4. $thumb = @imagecreatetruecolor ($p_max_size, $p_max_size) or die ("Can't create Image!");
  5. $width = imagesx($pic);
  6. $height = imagesy($pic);
  7. if ($width $twidth = $p_max_size;
  8. $theight = $twidth * $height / $width;
  9. imagecopyresized($thumb, $pic, 0, 0, 0, ($height/2)-($width/2), $twidth, $theight, $width, $height);
  10. } else {
  11. $theight = $p_max_size;
  12. $twidth = $theight * $width / $height;
  13. imagecopyresized($thumb, $pic, 0, 0, ($width/2)-($height/2), 0, $twidth, $theight, $width, $height);
  14. }
  15. ImageJPEG ($thumb, $p_thumb_file, $p_quality);

  16. }
  17. }
  18. ?>
复制代码



来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板