Page 1 of 1

Converting for svg to eps ()

Posted: 2019-03-11T00:37:28-07:00
by atif
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");
            }

Re: Converting for svg to eps ()

Posted: 2019-03-11T09:02:18-07:00
by snibgo
IM is a raster image processor. Your code will read your SVG file, create a raster image from it, and save that raster image in an EPS (encapsulated postscript) file.

Does that answer the question?

Re: Converting for svg to eps ()

Posted: 2019-03-11T22:32:01-07:00
by atif
convert svg to EPS file in c# .net using imagemagick that can be reopened and edited in adobe illutrator . any reference code sample for this thanks

Re: Converting for svg to eps ()

Posted: 2019-03-12T07:22:05-07:00
by snibgo
Abobe Illustrator is a vector image editor. IM won't create any vector elements.