-
PHP生成图片缩略图类示例
本文实例讲述了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;
- }
- }
原文链接:http://www.phpfensi.com/php/20180619/10832.html
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式