当前位置:首页 > PHP教程 > php图像处理 > 列表

php动态生成缩略图并输出显示的方法

发布:smiling 来源: PHP粉丝网  添加日期:2021-05-22 21:11:59 浏览: 评论:0 

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

本文实例讲述了php动态生成缩略图并输出显示的方法,分享给大家供大家参考,具体如下:

调用方法:

<img src="thumbs.php?filename=photo.jpg&width=100&height=100">

此代码可以为大图片动态生成缩略图显示,图片在内存中生成,不在硬盘生成真实文件

thumbs.php文件如下:

  1. <?php 
  2. $filename$_GET['filename']; 
  3. $width = $_GET['width']; 
  4. $height = $_GET['height']; 
  5. $path="http://localhost/images/"; //finish in "/" 
  6. // Content type 
  7. header('Content-type: image/jpeg'); 
  8. // Get new dimensions 
  9. list($width_orig$height_orig) = getimagesize($path.$filename); 
  10. if ($width && ($width_orig < $height_orig)) { 
  11.   $width = ($height / $height_orig) * $width_orig
  12. else { 
  13.   $height = ($width / $width_orig) * $height_orig
  14. // Resample 
  15. $image_p = imagecreatetruecolor($width$height); 
  16. $image = imagecreatefromjpeg($path.$filename); 
  17. imagecopyresampled($image_p,$image,0,0,0,0,$width,$height,$width_orig,$height_orig); 
  18. // Output 
  19. imagejpeg($image_p, null, 100); 
  20. // Imagedestroy 
  21. imagedestroy ($image_p); 
  22. ?>

Tags: php动态生成缩略图

分享到: