首页 > 开发 > PHP > 正文

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

2024-05-04 23:34:31
字体:
来源:转载
供稿:网友

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

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

调用方法:

 

 
  1. <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. ?> 

希望本文所述对大家的php程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表