You could do the following as a temporary workaround:
using (MagickImage image = new MagickImage(@"logo:")) { using (MagickImage background = new MagickImage(new MagickColor("yellow"), 800, 800)) { background.Composite(image, 10, 10); background.Write("combined.png"); } }