PathStructure.Length

PathStructure.Length property

يحصل على ملفOSTypeStructure الطول بالبايت.

public override int Length { get; }

أمثلة

يوضح الكود التالي القدرة على تحميل الملف ببنية PathStructure.

[C#]

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

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

أنظر أيضا