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