6

我正在尝试编写一些代码来使用 GifBitmapEncoder 从 WPF 应用程序中导出动画 .gif。到目前为止我的工作正常,但是当我查看生成的 .gif 时,它只运行一次然后停止 - 我想让它无限循环。

我发现了这个以前的类似问题:

使用 BitmapEncoder 生成时如何在循环中重复 GIF

但是,他使用的是来自 Windows.Graphics.Imaging 的 BitmapEncoder 而不是 Windows.Media.Imaging 版本,这似乎有点不同。尽管如此,这给了我一个方向,经过更多的谷歌搜索,我想出了这个:

Dim encoder As New GifBitmapEncoder
Dim metaData As New BitmapMetadata("gif")
metaData.SetQuery("/appext/Application", System.Text.Encoding.ASCII.GetBytes("NETSCAPE2.0"))
metaData.SetQuery("/appext/Data", New Byte() {3, 1, 0, 0, 0})

'The following line throws the exception "The designated BitmapEncoder does not support global metadata.":
'encoder.Metadata = metaData

If DrawingManager.Instance.SelectedFacing IsNot Nothing Then
   For Each Frame As Frame In DrawingManager.Instance.SelectedFacing.Frames
       Dim bmpFrame As BitmapFrame = BitmapFrame.Create(Frame.CombinedImage, Nothing, metaData, Nothing)
       encoder.Frames.Add(bmpFrame)
   Next
End If

Dim fs As New FileStream(newFileName, FileMode.Create)
encoder.Save(fs)
fs.Close()

最初我尝试将元数据直接添加到编码器(如上面代码中注释掉的行),但在运行时抛出异常“指定的 BitmapEncoder 不支持全局元数据”。相反,我可以将我的元数据附加到每个帧,但是虽然这不会导致它崩溃,但生成的 .gif 也不会循环(而且我希望循环元数据无论如何都需要是全局的)。

任何人都可以提供任何建议吗?

4

2 回答 2

7

在研究了这篇文章并引用了 GIF 文件的原始字节后,我终于得到了这个工作。如果你想自己这样做,你可以像这样使用 PowerShell 获取十六进制格式的字节......

$bytes = [System.IO.File]::ReadAllBytes("C:\Users\Me\Desktop\SomeGif.gif")
[System.BitConverter]::ToString($bytes)

GifBitmapEncoder 似乎是编写 Header、Logical Screen Descriptor,然后是 Graphics Control Extension。缺少“NETSCAPE2.0”扩展。在其他来源的循环 GIF 中缺少的扩展总是出现在图形控件扩展之前。

所以我只插入了第 13 个字节之后的字节,因为前两个部分总是这么长。

        // After adding all frames to gifEncoder (the GifBitmapEncoder)...
        using (var ms = new MemoryStream())
        {
            gifEncoder.Save(ms);
            var fileBytes = ms.ToArray();
            // This is the NETSCAPE2.0 Application Extension.
            var applicationExtension = new byte[] { 33, 255, 11, 78, 69, 84, 83, 67, 65, 80, 69, 50, 46, 48, 3, 1, 0, 0, 0 };
            var newBytes = new List<byte>();
            newBytes.AddRange(fileBytes.Take(13));
            newBytes.AddRange(applicationExtension);
            newBytes.AddRange(fileBytes.Skip(13));
            File.WriteAllBytes(saveFile, newBytes.ToArray());
        }
于 2018-01-23T05:57:41.740 回答
-1

你知道你可以下载这个功能吗?看看WPF 上的 GIF 动画页面CodePlex。或者,有WPF 动画 GIF 1.4.4 on Nuget Gallery. 如果您喜欢教程,请查看网站上的 WPF 页面中的GIF 动画Code Project

@PaulJeffries,我道歉......我误解了你的问题。我之前使用过这里帖子中的一些代码来制作 .gif 文件的动画。这很简单,您可以根据自己的目的对其进行“逆向工程”。请查看如何让动画 gif 在 WPF 中工作?发帖看看是否有帮助。(我知道代码的实际目的也是为 .gif 设置动画)。

于 2013-09-10T12:51:56.103 回答