Hi,
I assume this is a bug.... I have an AI file that has 59 Colors, after a Resize this will increase to 33702
I assume this is a bug.... I have an AI file that has 59 Colors, after a Resize this will increase to 33702
var settings = new MagickReadSettings {Density = new PointD(150)};
using (var image = new MagickImage(FileName, settings)) {
var totalColors = image.TotalColors;
image.Resize(1024, 1024);
var totalColors2 = image.TotalColors;
image.Format = MagickFormat.Jpg;
filePath = ....
image.Write(filePath);
}