码迷,mamicode.com
首页 > Web开发 > 详细

thinkphp图片压缩-composer-Intervention-Image-ImageManagerStatic

时间:2020-04-01 19:49:10      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:基础上   tin   输出   插件   fun   cti   names   ==   and   

先抛出composer插件

composer require intervention/image
use Intervention\Image\ImageManagerStatic as Image;
public function youhua()
    {
        $hostdir=ROOT_PATH . ‘public‘ . DS .‘yh‘; //要读取的文件夹
        $filesnames = scandir($hostdir); 
        foreach ($filesnames as $name) {
            if($name==‘.‘||$name==‘..‘){
                continue;
            }else{
                $aurl= ROOT_PATH . ‘public‘ . DS .‘yh‘  . DS . $name;
                $img = Image::make($aurl);//打开的路径
                $img->resize(200, 266);//定制宽高
                $img->save($aurl);//保存
                echo $aurl . "<br/>"; //输出
            }
        }
    }

我这段代码实现的是在原来的基础上直接覆盖,相当于无痕压缩。

有输出另外需求的可以改变save路径

附上官方文档:http://image.intervention.io/api/save

thinkphp图片压缩-composer-Intervention-Image-ImageManagerStatic

标签:基础上   tin   输出   插件   fun   cti   names   ==   and   

原文地址:https://www.cnblogs.com/chenliuxiao/p/12614494.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!