convert 00001.tif -colorspace RGB -resample 72x72 -colorspace sRGB linearizeresample.jpg
How can this be implemented with Magick.Net
How can this be implemented with Magick.Net
using (MagickImage image = new MagickImage(path))
{
// Linearize to RGB
// Resample
image.Resample(72, 72);
// Back to sRGB
}