cdew / ccr-exif

Automatically exported from code.google.com/p/ccr-exif
0 stars 0 forks source link

exif date data in .m4a file cannot be extracted #8

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Use delphi code below to extract exif data
2. Returned date is invalid

What is the expected output? What do you see instead?
  Valid date should be returned.

What version of the product are you using? On what operating system?

Using ccr-exif 1.5.1  in Delphi XE2 x32.

Please provide any additional information below.

    ExifData := TExifData.Create;
    try
      ExifData.LoadFromGraphic(FileName);
      writeLn( datetimetostr(         ExifData.DateTime ));

    finally
      ExifData.Free;
    end;

Original issue reported on code.google.com by datamys...@gmail.com on 1 Sep 2014 at 5:07

Attachments: