PathStructure.Key

PathStructure.Key property

Gets the structure key.

public override int Key { get; }

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