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"))
{
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
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