I don't think you can get the difference between Baseline (Standard)" and "Baseline Optimized" with Magick.NET. Maybe it does lossless compression? You can do that with Magick.NET with the following code:
The downside of this is that it will only work if it produces a smaller file. Maybe I should add an extra method to the optimizer that will 'optimize' the file even if the result is larger. Not sure what I should call that method though.
var optimizer = new ImageMagick.ImageOptimizers.JpegOptimizer(); optimizer.Progressive = false; /* If you set this to false only 'optimizer.Progressive' will be checked and the inverse won't be done */ optimizer.OptimalCompression = false; optimizer.LosslessCompress(@"c:\yourfile.jpg");