I don't own Photoshop so I cannot really test this issue.
What is the exact version of Magick.NET that you are using? And can you open the PSD files that are created with the following code?
It should create the same file in both situations.
What is the exact version of Magick.NET that you are using? And can you open the PSD files that are created with the following code?
using (MagickImage image = new MagickImage("xc:red", 50, 100)) { image.Alpha(AlphaOption.Opaque); image.Write("test1.psd"); } using (MagickImageCollection images = new MagickImageCollection()) { MagickImage image = new MagickImage("xc:red", 50, 100); image.Alpha(AlphaOption.Opaque); images.Add(image); images.Write("test2.psd"); }