예제 #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));
 }