using (MagickImage img = new MagickImage("C:\\TEST.bmp"))
{
img.Format = MagickFormat.Gif;
img.Transparent(MagickColor.FromRgb(255, 255, 255));
img.Write("C:\\TEST.gif");
}
Everything is fine but the transparent part becomes 'black' if I view the output GIF using the tool does not support 'transparency' such as MS Paint, so is it possible to turn the 'black' color into other colors?