PathStructure.Path

PathStructure.Path property

Obtiene o establece la ruta.

public string Path { get; set; }

El valor de la propiedad

La ruta completa.

Ejemplos

El siguiente código demuestra la capacidad de cargar un archivo con la estructura PathStructure.

[C#]

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

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

Ver también