You could try to following:
Why do you need the CMYK conversion?
using (MagickImage image = new MagickImage(@"input.png")) { image.Crop(100, 100, Gravity.Center); image.BorderColor = Color.Purple; image.Border(10); image.Write(@"output.png"); }