Converting for svg to eps ()
Posted: 2019-03-11T00:37:28-07:00
when converting svg to eps in c# .Net the get blurred and looks like a jpg file with no objects to resize .. please help me out in this ..below is the code snippet
Code: Select all
using (MagickImage image = new MagickImage(@"E:\SVG\SVG\24.svg"))
{
image.Format = MagickFormat.Eps;
image.Write(@"E:\SVG\SVGConvert\" + "242convert.eps");
}