PathStructure.StructureKey

PathStructure.StructureKey field

Identificeert de structuursleutel.

public const int StructureKey;

Voorbeelden

De volgende code demonstreert de mogelijkheid om een bestand te laden met de PathStructure-structuur.

[C#]

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

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

Zie ook