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

또한보십시오