3

我有点惊讶和不解。我尝试从图像中读取属性项。特别是,我对“拍摄日期”感兴趣。我已经写了一个程序来做到这一点。或多或少。对于某些文件,它可以完美运行,但是...

我有一些文件在属性中有“拍摄日期”(当通过 Windows 资源管理器查看时,Windows 7 x64)。它们不同于创建、修改和访问的日期。所以我确实有第四次约会。但是,如果我遍历属性项,它不会显示(在任何 ID 上)。当我在 PropertyItem.Id(0x9003 或 36867)上查找它时,我发现该属性项不存在。

我的代码循环遍历属性项:

        for (int i = 0; i < fileNames.Length; i++)
        {
            FileStream fs = new FileStream(fileNames[i], FileMode.Open, FileAccess.Read);
            Image pic = Image.FromStream(fs, false, false);



            int t = 0;
            foreach (PropertyItem pii in pic.PropertyItems)
            {
                MessageBox.Show(encoding.GetString(pii.Value, 0, pii.Len - 1) + " - ID: " + t.ToString());
                t++;
            }
        }

仅读取“拍摄日期”属性的代码(我从这里偷了: http: //snipplr.com/view/25074/

    public static DateTime DateTaken(Image getImage)
    {
        int DateTakenValue = 0x9003; //36867;

        if (!getImage.PropertyIdList.Contains(DateTakenValue))
            return DateTime.Parse("01-01-2000");

        string dateTakenTag = System.Text.Encoding.ASCII.GetString(getImage.GetPropertyItem(DateTakenValue).Value);
        string[] parts = dateTakenTag.Split(':', ' ');
        int year = int.Parse(parts[0]);
        int month = int.Parse(parts[1]);
        int day = int.Parse(parts[2]);
        int hour = int.Parse(parts[3]);
        int minute = int.Parse(parts[4]);
        int second = int.Parse(parts[5]);

        return new DateTime(year, month, day, hour, minute, second);
    }

但是,当我在 Windows 资源管理器的“文件属性窗口”中更改日期时,它开始出现在我的程序中。

所以我的问题是:这个“拍摄日期”从何而来?我怎样才能访问它?难道除了 EFIX 数据之外还有其他信息来源吗?

谢谢!

4

3 回答 3

13

如果您想从一些基本编码开始,您可以尝试这样的事情

// 加载你喜欢的图像。System.Drawing.Image image = new Bitmap("my-picture.jpg");

Referenced from AbbydonKrafts

// Get the Date Created property 
//System.Drawing.Imaging.PropertyItem propertyItem = image.GetPropertyItem( 0x132 );
System.Drawing.Imaging.PropertyItem propertyItem 
         = image.PropertyItems.FirstOrDefault(i => i.Id == 0x132 ); 
if( propItem != null ) 
{ 
  // Extract the property value as a String. 
  System.Text.ASCIIEncoding encoding = new System.Text.ASCIIEncoding(); 
  string text = encoding.GetString(propertyItem.Value, 0, propertyItem.Len - 1 ); 

  // Parse the date and time. 
  System.Globalization.CultureInfo provider = CultureInfo.InvariantCulture; 
  DateTime dateCreated = DateTime.ParseExact( text, "yyyy:MM:d H:m:s", provider ); 
}
于 2013-01-13T21:29:52.490 回答
1

将行更改.ParseExact为以下内容

DateTime dateCreated = DateTime.ParseExact( ConvertToString(dateTakenProperty)**.Substring(0, 19)**, "yyyy:MM:dd HH:mm:ss", provider )

在字符串的末尾可能有一个null无法处理的字符。为预期的长度做 a.SubString将解决它。

于 2013-05-06T22:16:33.433 回答
1

好吧,我正在获取图像文件的“修改”日期,而不是拍摄日期。我已经使用以下代码实现了:

public static System.DateTime GetImageDate(string filePath)
  {
     System.Drawing.Image myImage = Image.FromFile(filePath);
     System.Drawing.Imaging.PropertyItem propItem = myImage.GetPropertyItem(36867);
     string dateTaken = new System.Text.RegularExpressions.Regex(":").Replace(System.Text.Encoding.UTF8.GetString(propItem.Value), "-", 2);
     return System.DateTime.Parse(dateTaken);
  }
于 2016-07-16T04:44:41.970 回答