Quantcast
Viewing all articles
Browse latest Browse all 3693

New Post: Photoshop Cannot Open PSD Created in Magick.Net

Environment:
VS2015 SP3, .NET v4.6.1, Windows 10 Pro Anniversary, Magick.NET-Q8-AnyCPU.dll v7.0.3.0, Ghostscript 9.19

I have created a PSD file using the following code:

using (MagickImage magickImage = new MagickImage(@"C:\users\abc\desktop\OtterTest_102.jpg"))
{
using (FileStream fs = File.Open(@"C:\users\abc\desktop\otter2.Psd", FileMode.Create))
{
    magickImage.Write(fs, MagickFormat.Psd);
}
}

Regardless of Photoshop version (CS6, CC, CC2015.5, etc.), if I try to open the PSD I get error message "Could not apply the workspace because the file is not compatible with this version of Photoshop."

I have no problem converting this JPEG to other formats.

Am I doing something wrong? Am I really as stupid as my ex claims?

TIA,
mlavie

Viewing all articles
Browse latest Browse all 3693

Trending Articles