jpeg size is 225kb. (https://imgur.com/a/nEzbFzz)
If i do this with atalasoft, image size is => 121 kb( same with photoshop result )
But same process with Magick.NET result size is 250kb. There is no difference between images. Only totalColor values are different.
How can i reduce size of tif image like atalasoft or photoshop with Magick.NET.
Code: Select all
MagickImage image = new MagickImage(path);
image.Quality = 50;
image.Settings.Compression = CompressionMethod.JPEG;
image.Format = MagickFormat.Tif;