PHP Imagick调整Gif框架的大小有奇怪的问题

时间:2018-11-04 00:04:06

标签: php imagick

我正在尝试调整gif的所有帧的大小,有时它们变得非常奇怪。

我已经看到了使用命令行的示例,我现在想尝试避免这种情况。

原文:

enter image description here

调整大小:

enter image description here

您可以清楚地看到问题所在。

现在我的代码:

     $imgBlob = file_get_contents(__DIR__ . '/../assets/test_gif.gif');

    if ($imgBlob === false) {
        echo 'img blob failed!' . PHP_EOL;
        return;
    }

    $img = new Imagick();
    $img->readImageBlob($imgBlob);
    $img->coalesceImages();
    $count = 0;
    foreach ($img as $_img) {
       // $_img->coalesceImages();
        $imgWidth = $_img->getImageWidth();
        $imgHeight = $_img->getImageHeight();

        $ratio = $imgHeight / $imgWidth;

        $resizeWidth = 200;
        $resizeHeight = 300;

        if ($ratio > 0) {
            $resizeWidth = round($resizeHeight / $ratio, 0);
        } else {
            $resizeHeight = round($resizeWidth / $ratio, 0);
        }
        //if ($_img->adaptiveResizeImage($resizeWidth, $resizeHeight) === false) {
        if ($_img->resizeImage($resizeWidth, $resizeHeight, Imagick::FILTER_CATROM, 1, 0) === false) {
            echo 'FAILED' . PHP_EOL;
        }
        $count++;
    }

    $thumbnailOnDisk = __DIR__ . '/../assets/test_resized.gif';
    if (file_exists($thumbnailOnDisk)) {
        unlink($thumbnailOnDisk);
    }

    $img = $img->deconstructImages();
    if ($count > 1) {
        $file = $img->writeImages($thumbnailOnDisk, true);
    } else {
        $file = $img->writeImage($thumbnailOnDisk);
    }
    echo 'DONE' . PHP_EOL;

不确定确切地执行coalesceImages或deconstructImages的操作,我很难在网上找到可以解决问题的示例。

2 个答案:

答案 0 :(得分:1)

$img->coalesceImages();

返回我丢弃的imagick对象。

$img = $img->coalesceImages();

工作。

答案 1 :(得分:0)

调整图像大小时,还需要设置图像页面的大小。

http://php.net/manual/en/imagick.setimagepage.php

我读过一次,在某些情况下gif的标题可能未说明正确的图像尺寸。这就是为什么以任何方式设置图像页面都是有用的。

示例:

`$image->resizeImage(120, 110, imagick::FILTER_CATROM, 1);
// Set the page size
$image->setImagePage(120, 110, 0, 0);