Using the following file as my source(.eps):
https://www.dropbox.com/s/b4pn07h4w4mnp65/PreviewforEPS.eps
This conversion works fine going from .eps to .jpg:
https://www.dropbox.com/s/b4pn07h4w4mnp65/PreviewforEPS.eps
This conversion works fine going from .eps to .jpg:
using (MagickImage image2 = new MagickImage("fileSource.eps"))
{
image2.Strip();
image2.Write("fileDestination.jpg");
}
The following does NOT. It works for some other conversions, but not .eps to .jpg using (MagickImage image2 = new MagickImage("fileSource.eps"))
{
image2.Strip();
Stream fs = new FileStream(fileDestination.jpg", FileMode.OpenOrCreate);
image2.Write(fs);
}
Thanks.