PathStructure.PathStructure

PathStructure constructor

Initializes a new instance of the PathStructure class.

public PathStructure(ClassID keyName)
ParameterTypeDescription
keyNameClassIDThe key name.

Examples

The following code demonstrates ability to load file with PathStructure structure.

[C#]

string srcFile = "shirt-color.psd";
string output = "output.psd";

using (PsdImage image = (PsdImage)Image.Load(srcFile))
{
    image.Save(output);
}

See Also