hi,
i'm trying to convert svg to transparent png.
how do i keep the transparency of the result ?
thanks
juna
i'm trying to convert svg to transparent png.
var url = "J:/MyGit/ImagePlayground/ImagePlayground/bin/Debug/mask.svg";
var image = new MagickImage(url);
image.Format=MagickFormat.Png24;
image.Write("mask.png");
but the resulted image, has white background.how do i keep the transparency of the result ?
thanks
juna