php图片压缩-高清晰度

lygz 2018-12-07 原文

php图片压缩-高清晰度

php高清晰度无损压缩

 经常会用到把上传的大图片压缩,特别是体积,在微信等APP应用上,也默认都是有压缩的,那么,怎么样对图片大幅度压缩却仍能保持较高的清晰度呢?

 压缩通常是有按比例缩放,和指定宽度压缩的,效果很不错,一个数码相机拍的4M图片,压缩后保持了较高的清晰度和原图宽高值,只有700K。

下面是代码(有两个文件,imgcompress.class.php 类,及compress.php

compress.php

1 <?php
2 require_once 'imgcompress.class.php';
3 $source =  'test.png';//原图文件名
4 $dst_img = 'test_.png';//保存图片的文件名
5 $percent = 1;  #原图压缩,不缩放,但体积大大降低
6 $image = (new imgcompress($source,$percent))->compressImg($dst_img);

imgcompress.class.php

  1 <?php
  3 /**
  4  * 图片压缩类:通过缩放来压缩。
  5  * 如果要保持源图比例,把参数$percent保持为1即可。
  6  * 即使原比例压缩,也可大幅度缩小。数码相机4M图片。也可以缩为700KB左右。如果缩小比例,则体积会更小。
  7  *
  8  * 结果:可保存、可直接显示。
  9  */
 10 class imgcompress{
 11 
 12     private $src;
 13     private $image;
 14     private $imageinfo;
 15     private $percent = 0.5;
 16 
 17     /**
 18      * 图片压缩
 19      * @param $src 源图
 20      * @param float $percent  压缩比例
 21      */
 22     public function __construct($src, $percent=1)
 23     {
 24         $this->src = $src;
 25         $this->percent = $percent;
 26     }
 27 
 28 
 29     /** 高清压缩图片
 30      * @param string $saveName  提供图片名(可不带扩展名,用源图扩展名)用于保存。或不提供文件名直接显示
 31      */
 32     public function compressImg($saveName='')
 33     {
 34         $this->_openImage();
 35         if(!empty($saveName)) $this->_saveImage($saveName);  //保存
 36         else $this->_showImage();
 37     }
 38 
 39     /**
 40      * 内部:打开图片
 41      */
 42     private function _openImage()
 43     {
 44         list($width, $height, $type, $attr) = getimagesize($this->src);
 45         $this->imageinfo = array(
 46             'width'=>$width,
 47             'height'=>$height,
 48             'type'=>image_type_to_extension($type,false),
 49             'attr'=>$attr
 50         );
 51         $fun = "imagecreatefrom".$this->imageinfo['type'];
 52         $this->image = $fun($this->src);
 53         $this->_thumpImage();
 54     }
 55     /**
 56      * 内部:操作图片
 57      */
 58     private function _thumpImage()
 59     {
 60         $new_width = $this->imageinfo['width'] * $this->percent;
 61         $new_height = $this->imageinfo['height'] * $this->percent;
 62         $image_thump = imagecreatetruecolor($new_width,$new_height);
 63         //将原图复制带图片载体上面,并且按照一定比例压缩,极大的保持了清晰度
 64         imagecopyresampled($image_thump,$this->image,0,0,0,0,$new_width,$new_height,$this->imageinfo['width'],$this->imageinfo['height']);
 65         imagedestroy($this->image);
 66         $this->image = $image_thump;
 67     }
 68     /**
 69      * 输出图片:保存图片则用saveImage()
 70      */
 71     private function _showImage()
 72     {
 73         header('Content-Type: image/'.$this->imageinfo['type']);
 74         $funcs = "image".$this->imageinfo['type'];
 75         $funcs($this->image);
 76     }
 77     /**
 78      * 保存图片到硬盘:
 79      * @param  string $dstImgName  1、可指定字符串不带后缀的名称,使用源图扩展名 。2、直接指定目标图片名带扩展名。
 80      */
 81     private function _saveImage($dstImgName)
 82     {
 83         if(empty($dstImgName)) return false;
 84         $allowImgs = ['.jpg', '.jpeg', '.png', '.bmp', '.wbmp','.gif'];   //如果目标图片名有后缀就用目标图片扩展名 后缀,如果没有,则用源图的扩展名
 85         $dstExt =  strrchr($dstImgName ,".");
 86         $sourseExt = strrchr($this->src ,".");
 87         if(!empty($dstExt)) $dstExt =strtolower($dstExt);
 88         if(!empty($sourseExt)) $sourseExt =strtolower($sourseExt);
 89 
 90         //有指定目标名扩展名
 91         if(!empty($dstExt) && in_array($dstExt,$allowImgs)){
 92             $dstName = $dstImgName;
 93         }elseif(!empty($sourseExt) && in_array($sourseExt,$allowImgs)){
 94             $dstName = $dstImgName.$sourseExt;
 95         }else{
 96             $dstName = $dstImgName.$this->imageinfo['type'];
 97         }
 98         $funcs = "image".$this->imageinfo['type'];
 99         $funcs($this->image,$dstName);
100     }
101 
102     /**
103      * 销毁图片
104      */
105     public function __destruct(){
106         imagedestroy($this->image);
107     }
108 
109 }

 使用之后个人感觉 $percent 设置为0.5 左右就不错了,压缩后的图片与原图质量基本一样。

原文:https://sylearning.iteye.com/blog/2368860

2018年12月7日17:41:13

posted on 2018-12-07 17:42 凌雲 阅读() 评论() 编辑 收藏

 

 
版权声明:本文为lygz原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/lygz/p/10084171.html

php图片压缩-高清晰度的更多相关文章

  1. PHP设计模式-单例模式

    一直以来都是在写项目却从来没有仔细分析过什么是单例模式,单例模式分为几种,单例模式有什么特点。今天随便记录一个 […]...

  2. Nginx反向代理php的几种方式

    第一种: 传统的LNMP方式这种我称之为最古老的代理方式, 一般是流量入口放置一个Nginx, 然后proxy_pass到 Nginx + PHP的系统(Nginx解析http协议转发给fastcgi_pass交由php处理), 通常的...

  3. PHP 权限管理及主页面

    <style type="text/css"> * { margin:0px auto; padd […]...

  4. PHP内核之旅-2.SAPI中的Cli

      PHP 内核之旅系列 PHP内核之旅-1.生命周期 PHP内核之旅-2.SAPI中的Cli 一、SAPI是 […]...

  5. PHP函数小工具

    PHP检测IP是否内网地址、保留地址/*** @param string $ip 被检测的IP* @return bool 是否内网或者保留IP*/public function isInternalIp($ip){$ip = ip...

  6. PHP之旅—出发(php+apache+MySQL)

    @目录前言准备php安装Apache安装MySQL安装Navicat安装(附)Apache+php整合验证Apache+php前言本文详细介绍php+apache+MySQL在window下的独立版本安装,这样能让你更了解它们的工作原理,...

  7. php常见绕过

    ==弱比较<?phpif (isset($_POST['a']) and isset($_POST['b'])) {if ($_POST['a'] != $_POST['b']) {if (md5($_POST['a']) == md...

  8. 《php与mysql权威指南》第一部分

    第一部分 准备篇第1章 Apache基础1.1 Apache介绍:开源的http服务器软件   常见的Web服 […]...

随机推荐

  1. 阿里云使用镜像安装freepbx

    安装freepbx真的是历经坎坷,不过也收获了一些东西。freepbx可以通过源码安装也可以通过镜像安装。源码 […]...

  2. 博客上的几种新职业介绍

    看了很多博客,发现了一些共同点。我觉得可以把这些博主分类一下,形成几种新的职业。 我不是在嘲讽谁,真的。 超文 […]...

  3. 线性代数 | Linear Algebra

    网上说《线性代数应该这样学》非常不错,再配合大学教材,把线性代数的基本知识点过一遍。 线性代数 – […]...

  4. 优秀的音频编辑软件-WavePad

    WavePad for Mac是一款非常优秀的音频编辑软件,WavePad能轻松制作和编辑语音和其他音频录音, […]...

  5. 案例分享:Qt政务标签设计器,标签排版软件定制与打印

    需求   1.标签设计器;  2.具备文字排版功能;  3.支持六种排版格式;  4.排版后可以输出打印(de […]...

  6. Bootstrap每天必学之导航条

    http://www.jb51.net/article/75534.htm   Bootstrap每天必学之导 […]...

  7. Windows 任务调度程序定时执行Python脚本

    Windows 任务调度程序(Task Scheduler)可以定时执行程序,本文分享使用Task Sched […]...

  8. 5 分钟快速学习,缓存一致性优化方案!

    缓存操作 读缓存 读缓存可以分为两种情况命中(cache hit)和未命中(cache miss): 缓存命中 […]...

展开目录

目录导航