You are looking for the Extent method:
using (MagickImage image = new MagickImage(Color.Yellow, 600, 1000)) { image.Resize(100, 100); image.BackgroundColor = MagickColor.Transparent; image.Extent(100, 100, Gravity.Center); image.Write("yellow.png"); }