PathStructure.Length

PathStructure.Length property

MendapatkanOSTypeStructure panjang dalam byte.

public override int Length { 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