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

Posted super久违

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thinkphp图片压缩-composer-Intervention-Image-ImageManagerStatic相关的知识,希望对你有一定的参考价值。

先抛出composer插件

composer require intervention/image
use InterventionImageImageManagerStatic 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的主要内容,如果未能解决你的问题,请参考以下文章

thinkphp上传图片自动压缩问题

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

PHP 生成压缩包,PHP多个文件合并成压缩包,PHP压缩包, PHP ZipArchive thinkphp 将多个文件合并成压缩包

关于thinkphp图片上传问题

thinkphp 上传图片未选择文件

Thinkphp图片水印和文字水印