I am not sure what you are asking? Do you want to put all the images from your input image (PSD) on top of each other? If that is want you want you could do the following:
using (MagickImageCollection psd = new MagickImageCollection("YourFile.psd")) { using (MagickImage result = psd.Flatten()) { result.Write("Output.jpg"); } }