PHP生成缩略图(3)--封装类
2018-06-22 05:15:57来源:未知 阅读 ()
前台php代码
<?php require_once 'img_thumb.class.php'; $image = new ImgLib(); //源图路径 $src_path='E:/wamp/www/Demo/IMG/01.jpg'; //把新图片的名称返回浏览器 echo $image->thumb($src_path,300,300); ?>
后台php代码
<?php class ImgLib{ private $error; public function getError(){ return $this->error; }
/** * * 制作缩略图 * @param $src_path string 原图路径 * @param $max_w int 画布的宽度 * @param $max_h int 画布的高度 * @param $flag bool 是否是等比缩略图 默认为false * @param $prefix string 缩略图的前缀 默认为'sm_' * */ public function thumb($src_path,$max_w,$max_h,$prefix = 'sm_',$flag = true){ //获取文件的后缀 $ext= strtolower(strrchr($src_path,'.')); //判断文件格式 switch($ext){ case '.jpg': $type='jpeg'; break; case '.gif': $type='gif'; break; case '.png': $type='png'; break; default: $this->error='文件格式不正确'; return false; } //拼接打开图片的函数 $open_fn = 'imagecreatefrom'.$type; //打开源图 $src = $open_fn($src_path); //创建目标图 $dst = imagecreatetruecolor($max_w,$max_h); //源图的宽 $src_w = imagesx($src); //源图的高 $src_h = imagesy($src); //是否等比缩放 if ($flag) { //等比 //求目标图片的宽高 if ($max_w/$max_h < $src_w/$src_h) { //横屏图片以宽为标准 $dst_w = $max_w; $dst_h = $max_w * $src_h/$src_w; }else{ //竖屏图片以高为标准 $dst_h = $max_h; $dst_w = $max_h * $src_w/$src_h; } //在目标图上显示的位置 $dst_x=(int)(($max_w-$dst_w)/2); $dst_y=(int)(($max_h-$dst_h)/2); }else{ //不等比 $dst_x=0; $dst_y=0; $dst_w=$max_w; $dst_h=$max_h; } //生成缩略图 imagecopyresampled($dst,$src,$dst_x,$dst_y,0,0,$dst_w,$dst_h,$src_w,$src_h); //文件名 $filename = basename($src_path); //文件夹名 $foldername=substr(dirname($src_path),0); //缩略图存放路径 $thumb_path = $foldername.'/'.$prefix.$filename; //把缩略图上传到指定的文件夹 imagepng($dst,$thumb_path); //销毁图片资源 imagedestroy($dst); imagedestroy($src); //返回新的缩略图的文件名 return $prefix.$filename; } } ?>
结果:
浏览器:
文件夹:
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- PHP写UltraEdit插件脚本实现方法 2020-03-29
- php 带逗号千位符数字的处理方法 2020-03-28
- PHP三元运算符的结合性介绍 2020-03-28
- PHP静态延迟绑定和普通静态效率的对比 2020-03-28
- 基于php流程控制语句和循环控制语句 2020-03-28
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash