PathStructure.StructureKey

PathStructure.StructureKey field

Mengidentifikasi kunci struktur.

public const int StructureKey;

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