Class PathStructure

PathStructure class

경로 구조.

public sealed class PathStructure : OSTypeStructure

생성자

이름설명
PathStructure(ClassID)의 새 인스턴스를 초기화합니다.PathStructure 클래스.

속성

이름설명
override Key { get; }구조 키를 가져옵니다.
KeyName { get; set; }키 이름을 가져오거나 설정합니다.
override Length { get; }가져오기OSTypeStructure 바이트 길이.
Path { get; set; }경로를 가져오거나 설정합니다.
Prefix { get; set; }경로 접두사를 가져오거나 설정합니다.

행동 양식

이름설명
virtual GetHeaderLength()헤더 길이를 가져옵니다.
Save(StreamContainer)지정된 스트림 컨테이너에 구조를 저장합니다.
SaveWithoutKeyName(StreamContainer)지정된 스트림 컨테이너에 구조를 저장합니다.

필드

이름설명
const StructureKey구조 키를 식별합니다.

다음 코드는 PathStructure 구조로 파일을 로드하는 기능을 보여줍니다.

[C#]

string srcFile = "shirt-color.psd";
string output = "output.psd";

using (PsdImage image = (PsdImage)Image.Load(srcFile))
{
    image.Save(output);
}

또한보십시오