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

也可以看看