Item
ExifDictionaryBasePackage indexer
Obtiene la etiqueta TIFF con el id especificado.
public TiffTag this[TiffTagID tagId] { get; }
Parámetro | Descripción |
---|---|
tagId | El id de la etiqueta a recuperar. |
Valor_devuelto
ElTiffTag
con el identificador de etiqueta especificado.
Ejemplos
Este ejemplo demuestra cómo leer una etiqueta TIFF/EXIF específica por su identificador.
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);
}
}
}
Ver también
- class TiffTag
- enum TiffTagID
- class ExifDictionaryBasePackage
- espacio de nombres GroupDocs.Metadata.Standards.Exif
- asamblea GroupDocs.Metadata