PathStructure.Key
PathStructure.Key property
구조 키를 가져옵니다.
public override int Key { get; }
예
다음 코드는 PathStructure 구조로 파일을 로드하는 기능을 보여줍니다.
[C#]
string srcFile = "shirt-color.psd";
string output = "output.psd";
using (PsdImage image = (PsdImage)Image.Load(srcFile))
{
image.Save(output);
}