PHP生成图片缩略图类示例
发布:smiling 来源: PHP粉丝网 添加日期:2018-06-19 11:42:13 浏览: 评论:0
本文实例讲述了PHP生成图片缩略图类。分享给大家供大家参考,具体如下:
- classApp_image_helper {
- protected$imgFileName;
- protected$imgWidth;
- protected$imgHeight;
- protected$imgMime;
- protected$imgResource;
- static $imgMineList
- =array(
- 'jpeg'=>'image/jpeg',
- 'gif'=>'image/gif',
- 'png'=>'image/png',
- 'wbmp'=>'image/wbmp',
- );
- /**
- * 根据文件名,初始化图片,
- * 计算出给定图片的宽、高、图片类型,并获取图片的资源保存到内存,便于下次使用
- * App_image_helper constructor.
- *
- * @param $fileName
- */
- publicfunction__construct($fileName) {
- $this->imgFileName =$fileName;
- list($this->imgWidth,$this->imgHeight,$this->imgMime) =$this->getImageInfo($this->imgFileName);
- $this->imgResource =$this->getImageResource($this->imgFileName);
- }
- /**
- * 根据图片路径获取相关宽、高、MIME类型信息
- *
- * @param $fileName
- *
- * @return array|null
- */
- protectedfunctiongetImageInfo($fileName) {
- $result= null;
- if(is_file($fileName) ) {
- $tmpImageInfo=getimagesize($fileName);
- if($tmpImageInfo) {
- $result=array($tmpImageInfo[0],$tmpImageInfo[1],$tmpImageInfo['mime']);
- }
- }
- return$result;
- }
- /**
- * 将图片文件转为资源类类型
- *
- * @param $fileName
- *
- * @return null|resource
- */
- protectedfunctiongetImageResource($fileName) {
- $image= null;
- if(is_file($fileName) ) {
- switch($this->imgMime) {
- caseself::$imgMineList['jpeg']:
- $image= imagecreatefromjpeg($fileName);
- break;
- caseself::$imgMineList['gif']:
- $image= imagecreatefromgif($fileName);
- break;
- caseself::$imgMineList['png']:
- $image= imagecreatefrompng($fileName);
- break;
- caseself::$imgMineList['wbmp']:
- $image= imagecreatefromwbmp($fileName);
- break;
- default:
- break;
- }
- }
- return$image;
- }
- /**
- * 可根据固定宽,等比缩放图片;或根据百分比,等比缩放图片
- *
- * @param int $width
- * @param int $percent
- *
- * @return array|null
- */
- protectedfunctiongetSizeByScale($width= 360,$percent= 1) {
- $result= null;
- if($this->imgWidth &&$this->imgHeight ) {
- if($width) {
- $result=array($width,intval($width*$this->imgHeight /$this->imgWidth));
- }elseif($percent) {
- $result=array(intval($this->imgWidth *$percent),intval($this->imgHeight *$percent));
- }
- }
- return$result;
- }
- /**
- * 外调
- *
- * @param int $percentOrWidth int整数表示图片缩放为固定宽度,0.0~0.99999表示缩放百分比
- * @param null $fileName
- * @param int $quality
- * @param bool $reSample 重新采样图片,默认是
- *
- * @return bool
- */
- publicfunctioncreateImage($percentOrWidth= 1,$fileName= null,$quality= 75,$reSample= true) {
- $result= false;
- $fileName? header('Content-Type: '.$this->imgMime) : false;
- $size=$this->getSizeByScale(($percentOrWidth<= 1) ? null :$percentOrWidth,$percentOrWidth);
- if($size) {
- $thumb= imagecreatetruecolor($size[0],$size[1]);
- if($reSample) {
- imagecopyresampled($thumb,$this->imgResource, 0, 0, 0, 0,$size[0],$size[1],$this->imgWidth,$this->imgHeight);
- }else{
- imagecopyresized($thumb,$this->imgResource, 0, 0, 0, 0,$size[0],$size[1],$this->imgWidth,$this->imgHeight);
- }
- $result= imagejpeg($thumb,$fileName,$quality);
- }
- return$result;
- }
- }
Tags: 示例 图片
相关文章
- ·php 验证码详细生成与使用方法(2014-08-25)
- ·PHP验证码的产生和生成验证码程序(2014-08-25)
- ·PHP实现压缩图片尺寸并转为jpg格式的方法示例(2018-06-07)
- ·PHP图片裁剪与缩放示例(无损裁剪图片)(2018-07-31)
- ·php使用Jpgraph创建柱状图展示年度收支表效果示例(2018-08-02)
- ·PHP为图片添加水印的实例(2013-11-14)
- ·php 给图片加灰色透明效果(2013-11-14)
- ·php_imagick实现图片剪切、旋转、锐化、减色或增加特效(2013-11-14)
- ·php 图片添加文字水印并添加文字阴影 (2013-11-14)
- ·在PHP中将图片存放ORACLE中(2013-12-08)
- ·Php上传、生成缩略图、生成文字水印和图片水印(2013-12-09)
- ·php上传图片代码(同时图片保存到数据库)(2013-12-11)
- ·php生成验证码图片从入门和精通教程(2013-12-31)
- ·PHP中生成横状百分比图片实例(2014-01-06)
- ·php curl与fopen下载远程服务器图片实例(2014-01-06)
- ·PHP通过url下载远程图片到本地(2014-01-07)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)