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

関連項目