Hi, someone helps me. When i convert the BMP file to SVG, there is a big “X” on the svg file. Anyone know how to fix it?
here is my code.svg result.png (5.0 KB)
// Create Instance of SVG Options
var options = new SvgOptions();
SvgRasterizationOptions svgRasterizationOptions = new SvgRasterizationOptions();
options.VectorRasterizationOptions = svgRasterizationOptions;
options.VectorRasterizationOptions.PageWidth = image.Width;
options.VectorRasterizationOptions.PageHeight = image.Height;
// save BMP as a SVG
image.Save(@"G:\work\新建文件夹\T01_BorderMask_O_Crown.svg", options);