gpt4 book ai didi

php - 想象 : Remove frames from an animated GIF?

转载 作者:可可西里 更新时间:2023-11-01 13:59:09 26 4
gpt4 key购买 nike

我想了解如何从动画 GIF 中删除帧。

目前我正在尝试这个(作为测试):

$count = 1;
foreach ($_im AS $frame) {
if ($count > 1) { $frame->removeImage(); }
$count++;
}

然而,这似乎让对象中的所有东西都 toast 了。

同事的建议是创建另一个 IM 对象,然后将名人提取到其中,等等。但这看起来非常困惑。

最佳答案

我一直在浏览 Imagick一段时间的文档,并尝试了一些事情......但我也没有设法做你想要的 - 所以,我们至少有两个人找不到干净的方法^^

无论如何,我设法删除动画 GIF 图像帧的唯一方法是创建一个新帧,其中只包含我不想删除的帧:-(


考虑到我以这种方式加载图像:

// Load the existing image
$image = new Imagick(dirname(__FILE__) . '/animated-gif-source.gif');

(这是一个动画 gif,有 3 帧;我想“删除”第二帧)。


正如我所说,我发现“删除框架”的唯一方法是这个:

$new_image = new Imagick();

$i = 1;
foreach ($image as $frame) {
if ($i===1 || $i===3) {
// 3 frames ; we keep the first and third one
// ie, remove the second one
$new_image->addImage($frame->getImage());
}
$i++;
}

所以:

  • 创建一个新图像
  • 遍历原始框架
  • 如果当前帧是我要保留的帧,则将其复制到新图像


最后,将图像输出到浏览器:

// To directly output to the browser
header('Content-Type: image/gif');
echo $new_image->getImagesBlob();

或者,将其写入文件:

// To write the new image to a file
// Must use writeImages, and not writeImage (multi-frames ! )
$new_image->writeImages(dirname(__FILE__) . '/animated-gif-output.gif', true);

这些输出中的每一个仅包含第一帧和第三帧;所以,它的工作...
但是,正如你所说,感觉不太好:-(


我认为它可能适用于大多数图像;您可能会遇到大图像的问题,但动画 GIF 通常没有那么大...是吗?


其他方法可能是从命令行使用转换...但是...不是很好,而且我没有找到一种方法来删除那些 :-(

关于php - 想象 : Remove frames from an animated GIF?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1192877/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com