I am creating gifs using Magick.NET, but the file sizes are bigger than they should be.
ImageMagick.MagickImageCollection col = new MagickImageCollection();
col.Add(new ImageMagick.MagickImage("1.png"));
col.Add(new ImageMagick.MagickImage("2.png"));
for (int i = 0; i < col.Count; i++)
{
col[i].AnimationDelay = 0;
}
col.Write("test.gif");
I have tried setting the quality, transparency, format, and other options, but they either to do nothing or even increase the file size even more. What method is there for reducing the file size or quality of the gif?