PathStructure.Prefix
PathStructure.Prefix property
Gets or sets the path prefix.
public string Prefix { get; set; }
Property Value
The full path.
Examples
The following code demonstrates ability to load file with PathStructure structure.
[C#]
string srcFile = "shirt-color.psd";
string output = "output.psd";
using (PsdImage image = (PsdImage)Image.Load(srcFile))
{
image.Save(output);
}
See Also
- class PathStructure
- namespace Aspose.PSD.FileFormats.Psd.Layers.LayerResources.TypeToolInfoStructures
- assembly Aspose.PSD