Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
714 views
in Technique[技术] by (71.8m points)

How to resize an animated gif image using C#?

Is there a method to create a copy of an animated gif image using C#?

What I want is to generate a copy of a given gif image using the height and width parameters that the user provides. I have tried for a couple of hours to accomplish this but the resulting image does not preserve the original animations.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Took me a while to find this, but finally found a solution:

Install Magick.NET via NuGet, license can be found here:
https://magick.codeplex.com/license

Example code:

var newWidth = 100;
using (var collection = new MagickImageCollection(new FileInfo(@"C:est.gif")))
{
    collection.Coalesce();
    foreach (var image in collection)
    {
        image.Resize(newWidth, 0);
    }
    collection.Write(@"c:
esized.gif");
}

From my tests, this works with alpha channels and varying frame rates. Seems to be perfect!


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...