PathStructure.StructureKey
PathStructure.StructureKey field
标识结构键。
public const int StructureKey;
例子
以下代码演示了加载具有 PathStructure 结构的文件的能力。
[C#]
string srcFile = "shirt-color.psd";
string output = "output.psd";
using (PsdImage image = (PsdImage)Image.Load(srcFile))
{
image.Save(output);
}