Magick.NET is an object-oriented C# interface to ImageMagick. Use this forum to discuss, make suggestions about, or report bugs concerning Magick.NET
atif
Posts: 2 Joined: 2019-03-11T00:27:58-07:00
Authentication code: 1152
Post
by atif » 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");
}
snibgo
Posts: 12159 Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK
Post
by snibgo » 2019-03-11T09:02:18-07:00
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?
atif
Posts: 2 Joined: 2019-03-11T00:27:58-07:00
Authentication code: 1152
Post
by atif » 2019-03-11T22:32:01-07:00
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
Post
by snibgo » 2019-03-12T07:22:05-07:00
Abobe Illustrator is a vector image editor. IM won't create any vector elements.