PHP将图片合成gif动图

**一、**要实现此功能首先需要安装一个扩展:imagick扩展

我这里php环境使用的docker,直接在Dockerfile文件中定义后,生成容器即可:

# 安装Imagick PHP扩展
RUN pecl install imagick && \
docker-php-ext-enable imagick

其他方式,可以自行搜索下。

安装后,执行php -m查看是否已经安装成功,安装成功如下图,列表中会显示imagick:

**二、**多个图片生成GIF动图

        $imageData = []; //图片数据
        foreach ($imageArr as $item){ //$imageArr 图片数据 数组,我代码这里只需要png格式的图片
            $char = substr($item, -4);
            if($char == '.png'){
                $imageData[] = $item;
            }
        }

        $freq = 20; //每秒播放多少图片
        $interval = (int) (100 / $freq); //图片播放间隔时长 100是1秒

        $generateGifResult = self::generateGif($imageData, $gifFilePath, $interval, $width, $high);



     /**
     * @param $imageData *图片数据 数组
     * @param $gifPath *要输出的gif路径(文件所在的文件夹路径需要存在) ./test/test.gif
     * @param $interval *图片播放间隔时长
     * @return bool
     * @throws \ImagickException
     */
    public static function generateGif($imageData, $gifPath, $interval, $width = 200, $high = 300, $addWatermark = false)
    {
        $animation = new Imagick();
        $animation->setFormat('gif');

        foreach ($imageData as $file) {
            $img = new Imagick($file);
            $img->thumbnailImage($width, $high);//读取本地图片 将图片大小修改成自己定义的宽高
            if($addWatermark){ // 设置水印
                $text = new ImagickDraw();
                $text->setFillColor('#000');
                $text->setFont('Arial');
                $text->setFontSize(30);
                $text->setGravity(Imagick::GRAVITY_SOUTH); //水印位置
                $img->annotateImage($text, 0, 0, 0, '水印');
                unset($text);
            }
            //设置图像处理方法 3:清除此帧覆盖之前的图像 2:使用背景色清除边框区域 1:不丢弃,只覆盖下一帧图像 0:未指定处置
            $img->setImageDispose(3);
            $animation->addImage($img);//将图片加入到gif中
            $animation->setImageDelay($interval);//转场动画时间 100是1秒
            $animation->nextImage();
            unset($img);
        }

        //保存gif
        $animation->writeImages($gifPath,true);

        return true;
    }

生成后就是一个gif格式的动图文件了

相关推荐
黑客Ela1 小时前
网络安全问题概述
安全·web安全·php
Wh1teR0se1 小时前
详解php://filter--理论
web安全·php
李钢蛋6 小时前
PHP函数---function_exists()详解
开发语言·php
全栈小59 小时前
【PHP】部署和发布PHP网站到IIS服务器
服务器·开发语言·php
饮啦冰美式9 小时前
php如何定位问题
开发语言·php
夜色呦11 小时前
实验室管理自动化:Spring Boot技术的应用
spring boot·自动化·php
夜色呦16 小时前
Spring Boot实验室管理系统:高效科研管理解决方案
数据库·spring boot·php
ac-er888817 小时前
PHP二维数组排序算法函数
算法·php·排序算法
2401_8570262318 小时前
Spring Boot技术在实验室信息管理中的应用
数据库·spring boot·php