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