You can change all the white pixels with the following method:
using (MagickImage image = new MagickImage(@"C:\input.png")) { image.Opaque(new MagickColor("white"), MagickColor.Transparent); image.Write(@C:\output.png"); }