PathStructure.Prefix
PathStructure.Prefix property
获取或设置路径前缀。
public string Prefix { get; set; }
适当的价值
完整路径。
例子
以下代码演示了加载具有 PathStructure 结构的文件的能力。
[C#]
string srcFile = "shirt-color.psd";
string output = "output.psd";
using (PsdImage image = (PsdImage)Image.Load(srcFile))
{
image.Save(output);
}