作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何在 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/
我是一名优秀的程序员,十分优秀!