使用ExifReader在Jpeg Image中查找标签属性

时间:2015-08-12 04:03:20

标签: c# asp.net exif

我正在尝试从我的jpeg图像获取标签属性,如图所示。它的值是

<tx time=Tue Jul 21 10:20:04 2015> <ocrtime=Fri Jul 31 11:26:09 2015> <plate=4ARS123> <state=CA> <conf=873> <handle=4ARS123> <plateloc=906,744,1326,855>

我正试图从中获取plateloc标签并且已经尝试了到目前为止。我理解它的一个属性exiftags将让我在那里。哪一个?请帮忙

using (ExifReader reader = new ExifReader( Server.MapPath( testimage.ImageUrl )) ){
    // Extract the tag data using the ExifTags enumeration
    string plateloc;
    if (reader.GetTagValue<string>(ExifTags.ExifVersion,
                                    out plateloc))
    {

    }
}

I am Trying to get tags part of image properties as show in picture.it has plate loc.

0 个答案:

没有答案