I'm in the process of investigating switching from the LeadTool's imaging conversion stuff to Magick.Net. LeadTools allows me to read the profile from one image and write it to another, i.e.
var iccProf = new IccProfileExtended();
iccProf.ReadFromImage(sourceFilePath, 0);
iccProf.WriteToImage(destinationStream, 0);
Does Magick.net have something similar?