PathStructure.Key

PathStructure.Key property

Mendapat kunci struktur.

public override int Key { get; }

Contoh

Kode berikut menunjukkan kemampuan untuk memuat file dengan struktur PathStructure.

[C#]

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

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

Lihat juga