I'm using the Magick.NET library to convert an EPS file > JPEG. However the result is not nice because regardless of the resolution (DPI) and size (Width and Height) that I put the image is pixelated and with the wrong colors ... Here is an example:
Image saved in Photoshop:
ImagesavedviaMagick.NET
Asavector,thecorrectonewouldbetosaveitinanydimensionwithqualitybutitisnotwhatishappening.HereisthecodeI'musing.
using(MagickImage_image=newMagickImage(image.Path)){_image.Resize(3000,3000);//Maiorlado=3000px_image.Density=newDensity(300);//SetDPI=300_image.Write("teste.jpeg"); //
}
Is there a setting or parameter that I should go through to improve this resolution and color correction so that it is EQUAL to EPS?