SvgOptions.RescaleSubpixelLinewidths

SvgOptions.RescaleSubpixelLinewidths property

Whether sub-pixel linewidths should be rescaled. If set to true, lines thinner than a width specified by other options will be drawn thicker, asymptotically approaching the minimum width

public bool RescaleSubpixelLinewidths { get; set; }

Examples

using (var img = Image.Load(file)) { CadRasterizationOptions cadRasterizationOptions = new CadRasterizationOptions(); SvgOptions opt = new SvgOptions(); opt.RescaleSubpixelLinewidths = false; //now lines with width in source file == 0 will not be visible opt.VectorRasterizationOptions = cadRasterizationOptions; img.Save(outFile, opt); }

See Also