PathStructure.Path

PathStructure.Path property

パスを取得または設定します。

public string Path { get; set; }

プロパティ値

フルパス.

次のコードは、PathStructure 構造を持つファイルをロードする機能を示しています。

[C#]

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

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

関連項目