示例#1
0
 protected static void ReadExif(IDictionary<int, string> exifInfos, Image image, ExifFileds exifType)
 {
     exifInfos.Add((int)exifType, ExifTags.ReadTag(image, exifType));
 }
示例#2
0
 protected static void ReadExif(IDictionary <int, string> exifInfos, Image image, ExifFileds exifType)
 {
     exifInfos.Add((int)exifType, ExifTags.ReadTag(image, exifType));
 }
示例#3
0
 public static string ReadTag(Image image, ExifFileds exifFiledType)
 {
     return(ReadTag(image, (int)exifFiledType));
 }