如何以.gif格式保存图像?

时间:2018-11-08 21:54:17

标签: php image store

我使用ImageManipulator库存储图像。它还支持.gif格式:

.
.

    switch ($type) {
        case IMAGETYPE_GIF  :
            $this->image = imagecreatefromgif($file);
            break;
        case IMAGETYPE_JPEG :
            $this->image = imagecreatefromjpeg($file);
            break;
        case IMAGETYPE_PNG  :
            $this->image = imagecreatefrompng($file);
            break;
        default             :
            throw new InvalidArgumentException("Image type $type not supported");
    }

.
.

问题是我无法保存运动图像(我的意思是.gif格式,类似this)。它将被保存为静止图像(我想是该.gif的第一帧)。类似于this。知道怎么解决吗?

0 个答案:

没有答案