Features.ImageInfo.getPath C# (CSharp) Méthode

getPath() public méthode

public getPath ( ) : string
Résultat string
        public string getPath()
        {
            return _path;
        }

Usage Example

Exemple #1
0
 /// <summary>
 /// writes a jpg formated image from imInfo.getIm() into imInf.getPath()
 /// ****** IF EXISTS, WILL OVERWRITE THE imInf.getPath() image *******
 /// </summary>
 /// <param name="imInf">the wanted image to save im imInf.getPath() </param>
 public static void writeImage(ImageInfo imInf)
 {
     writeImage(imInf.getPath(), imInf.getIm());
 }
All Usage Examples Of Features.ImageInfo::getPath