PathStructure.StructureKey

PathStructure.StructureKey field

Identifica la chiave della struttura.

public const int StructureKey;

Esempi

Il codice seguente dimostra la possibilità di caricare file con struttura PathStructure.

[C#]

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

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

Guarda anche