Maison  >  Article  >  développement back-end  >  又一个生成图片缩略图的函数

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

WBOY
WBOYoriginal
2016-07-25 09:07:15862parcourir
  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. ?>
复制代码



Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Article précédent:一个加强版的php水印代码 Article suivant:一个php文本采集类