Converting for svg to eps ()

Magick.NET is an object-oriented C# interface to ImageMagick. Use this forum to discuss, make suggestions about, or report bugs concerning Magick.NET
Post Reply
atif
Posts: 2
Joined: 2019-03-11T00:27:58-07:00
Authentication code: 1152

Converting for svg to eps ()

Post 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");
            }
snibgo
Posts: 12159
Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK

Re: Converting for svg to eps ()

Post 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?
snibgo's IM pages: im.snibgo.com
atif
Posts: 2
Joined: 2019-03-11T00:27:58-07:00
Authentication code: 1152

Re: Converting for svg to eps ()

Post 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
snibgo
Posts: 12159
Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK

Re: Converting for svg to eps ()

Post by snibgo »

Abobe Illustrator is a vector image editor. IM won't create any vector elements.
snibgo's IM pages: im.snibgo.com
Post Reply