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