php生成图片缩略图的方法

这篇文章主要介绍了php生成图片缩略图的方法,涉及php操作图片的技巧,非常具有实用价值,需要的朋友可以参考下.

本文实例讲述了php生成图片缩略图的方法,分享给大家供大家参考,具体如下:

这里需要用到GD2 library

  1. function make_thumb($src,$dest,$desired_width)
  2. {
  3. /* read the source image */
  4. $source_image = imagecreatefromjpeg($src);
  5. $width = imagesx($source_image);
  6. $height = imagesy($source_image);
  7. /* find the "desired height" of this thumbnail, relative to the desired width */
  8. $desired_height = floor($height*($desired_width/$width));
  9. /* create a new, "virtual" image */
  10. $virtual_image = imagecreatetruecolor($desired_width,$desired_height);
  11. /* copy source image at a resized size */
  12. imagecopyresized($virtual_image,$source_image,0,0,0,0,$desired_width,$desired_height,$width,$height);
  13. /* create the physical thumbnail image to its destination */
  14. imagejpeg($virtual_image,$dest, 83);
  15. }