How to save psd layers in png using PSD-plugin for Paint.NET?

Trying to do this way:

System.Drawing.Image img;
var stream = new System.IO.MemoryStream();
var BRW = new PhotoshopFile.BinaryReverseWriter(stream);
var psd = new PhotoshopFile.PsdFile();
psd.Load("c:\\1.psd");
psd.Layers[0].Save(BRW);
stream.Seek(0, System.IO.SeekOrigin.Begin);
img = System.Drawing.Image.FromStream(stream, true, true);
img.Save("c:\\1.png", System.Drawing.Imaging.ImageFormat.Png);

But the line img = Image.FromStream(stream, true, true); throws "Parameter is not valid" exception.

Any other solutions via C#/C++ is also accaptable. Thanks in advance.

link|improve this question

36% accept rate
possible duplicate: stackoverflow.com/q/629955/635634. The most relevant answer to that question basically says your stream is corrupt. I doubt System.Drawing.Image understands psd format. – M.Babcock Jan 7 at 21:32
Not a duplicate. I'm finding a solution for the problem, not the reason of error in wrong solution. – kFk Jan 7 at 21:36
feedback

1 Answer

Have you thought about asking the author of the PSD plugin? Paint.NET isn't licensed for use as an SDK, by the way, only as an application.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.