免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1736 | 回复: 0
打印 上一主题 下一主题

摘录自 AutoIndex 的缩略图显示函数 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-04-29 17:03 |只看该作者 |倒序浏览
在用 php 处理图像时,一个最常用的功能就是生成缩略图,本文介绍的是摘录自 AutoIndex 的缩略图显示函数,该函数可以根据图像的扩展名自
动执行对应的处理函数,支持gif、jpg、png,可以自定义缩略图的大小,相信对新手学习php图像处理函数很有帮助。
PHP:  // 说明:摘录自 AutoIndex 的缩略图显示函数 // 整理:http://www.CodeBit.cn  //显示缩略图核心函数 function display_thumbnail($file, $thumbnail_height) {     global $html_heading;     if (!@is_file($file))     {         header('HTTP/1.0 404 Not Found');         die("$html_headingFile not found: ".htmlentities($file).'');     }     switch (ext($file))     {         case 'gif':             $src = @imagecreatefromgif($file);             break;         case 'jpeg':         case 'jpg':         case 'jpe':             $src = @imagecreatefromjpeg($file);             break;         case 'png':             $src = @imagecreatefrompng($file);             break;         default:             die("$html_headingUnsupported file extension.");     }     if ($src === false)     {         die("$html_headingUnsupported image type.");     }          header('Content-Type: image/jpeg');     header('Cache-Control: public, max-age=3600, must-revalidate');     header('Expires: '.gmdate('D, d M Y H:i:s', time()+3600).' GMT');     $src_height = imagesy($src);     if ($src_height $thumbnail_height)     {         imagejpeg($src, '', 100);     }     else     {         $src_width = imagesx($src);         $thumb_width = $thumbnail_height * ($src_width / $src_height);         $thumb = imagecreatetruecolor($thumb_width, $thumbnail_height);         imagecopyresampled($thumb, $src, 0, 0, 0, 0, $thumb_width,             $thumbnail_height, $src_width, $src_height);         imagejpeg($thumb, '', 100);         imagedestroy($thumb);     }     imagedestroy($src);     die(); }  //获取文件扩展名 function ext($fn) //return the lowercase file extension of $fn, not including the leading dot {     $fn = get_basename($fn);     return (strpos($fn, '.') ? strtolower(substr(strrchr($fn, '.'), 1)) : ''); }  //获取完整文件名 function get_basename($fn) //returns everything after the slash, or the original string if there is no slash {     return basename(str_replace('\\', '/', $fn)); }  //调用方式 参数(图片名,缩略图最大高度) display_thumbnail('newwebpick.com.jpg', '200');  ?>  
               
               
               

本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/1222/showart_1914432.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP