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);
}

Смотрите также