Item

ExifDictionaryBasePackage indexer

지정된 id를 가진 TIFF 태그를 가져옵니다.

public TiffTag this[TiffTagID tagId] { get; }
모수 설명
tagId 검색할 태그의 ID입니다.

반환 값

그만큼TiffTag 지정된 태그 ID를 사용합니다.

이 예는 식별자로 특정 TIFF/EXIF 태그를 읽는 방법을 보여줍니다.

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);
        }
    }
}

또한보십시오