Hi,
Not really sure what the error is here, I suspect it may be a chrome issue, although it may be that the images produced has an error that can be fixed.
Image screenshot shown side by side (Left image is Chrome)
How the image should look
The AI file the image was taken from
Printable Poster13.ai
Not really sure what the error is here, I suspect it may be a chrome issue, although it may be that the images produced has an error that can be fixed.
Image screenshot shown side by side (Left image is Chrome)
How the image should look
The AI file the image was taken from
Printable Poster13.ai
var settings = new MagickReadSettings {Density = new PointD(150)};
using (var image = new MagickImage(_mediaFolder + "/" + upload.FileName, settings)) {
image.Resize(1024, 1024);
image.Format = MagickFormat.Jpg;
filePath = ....
image.Write(filePath);
}