gpt4 book ai didi

c# - 如何在 C# 中获取 .gif 文件的持续时间?

转载 作者:行者123 更新时间:2023-12-02 03:44:11 29 4
gpt4 key购买 nike

如何在 C# 中获取 .gif 文件的持续时间?

我想在 gif 动画文件播放期间执行一个操作,但由于某种原因,我无法找到如何获取 gif 播放的时间长度。

最佳答案

您可以使用此代码:

public static class GifExtension
{
public static TimeSpan? GetGifDuration(this Image image, int fps = 60)
{
var minimumFrameDelay = (1000.0/fps);
if (!image.RawFormat.Equals(ImageFormat.Gif)) return null;
if (!ImageAnimator.CanAnimate(image)) return null;

var frameDimension = new FrameDimension(image.FrameDimensionsList[0]);

var frameCount = image.GetFrameCount(frameDimension);
var totalDuration = 0;

for (var f = 0; f < frameCount; f++)
{
var delayPropertyBytes = image.GetPropertyItem(20736).Value;
var frameDelay = BitConverter.ToInt32(delayPropertyBytes, f * 4) * 10;
// Minimum delay is 16 ms. It's 1/60 sec i.e. 60 fps
totalDuration += (frameDelay < minimumFrameDelay ? (int) minimumFrameDelay : frameDelay);
}

return TimeSpan.FromMilliseconds(totalDuration);
}
}

编辑:如果您确定所有帧具有相同的持续时间 - 您可以仅延迟第一个帧。

关于c# - 如何在 C# 中获取 .gif 文件的持续时间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47343230/

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