PathStructure.Path

PathStructure.Path property

Ottiene o imposta il percorso.

public string Path { get; set; }

Valore della proprietà

Il percorso completo.

Esempi

Il codice seguente dimostra la possibilità di caricare file con struttura PathStructure.

[C#]

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

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

Guarda anche