Item

ExifDictionaryBasePackage indexer

Ottiene il tag TIFF con l’id specificato.

public TiffTag this[TiffTagID tagId] { get; }
Parametro Descrizione
tagId L’id del tag da recuperare.

Valore di ritorno

ILTiffTag con l’ID tag specificato.

Esempi

Questo esempio mostra come leggere un tag TIFF/EXIF specifico in base al suo identificatore.

using (Metadata metadata = new Metadata(Constants.TiffWithExif))
{
    IExif root = metadata.GetRootPackage() as IExif;
    if (root != null && root.ExifPackage != null)
    {
        TiffAsciiTag software = (TiffAsciiTag)root.ExifPackage[TiffTagID.Software];
        if (software != null)
        {
            Console.WriteLine("Software: {0}", software.Value);
        }
    }
}

Guarda anche