C
crferguson
I'm just posting a link I found after hours of searching for a way to
get the "Date Picture taken" tag from a jpg file. I found another
class with the saem name, but it had overflow errors and I couldn't
get it to work correctly. However, the one at this link works well in
VBA as is...
http://sourceforge.net/projects/exifclass/
Also, I found this code in another post and it worked well for
iterrating through the tags to give a list of what's there...
ex.Load sFile
For i = 1 To 60000
With ex
v = .Tag(i)
If Len(v) Then
rw = rw + 1
Cells(rw, 1) = "&H" & CStr(Hex(i))
Cells(rw, 2) = "'" & CStr(v)
End If
End With
Next
txtExifInfo = ex.Tag(DateTimeOriginal)
http://groups.google.co.uk/group/mi...nk=gst&q=peter-t+exif&rnum=1#a835d0543d83193a
get the "Date Picture taken" tag from a jpg file. I found another
class with the saem name, but it had overflow errors and I couldn't
get it to work correctly. However, the one at this link works well in
VBA as is...
http://sourceforge.net/projects/exifclass/
Also, I found this code in another post and it worked well for
iterrating through the tags to give a list of what's there...
ex.Load sFile
For i = 1 To 60000
With ex
v = .Tag(i)
If Len(v) Then
rw = rw + 1
Cells(rw, 1) = "&H" & CStr(Hex(i))
Cells(rw, 2) = "'" & CStr(v)
End If
End With
Next
txtExifInfo = ex.Tag(DateTimeOriginal)
http://groups.google.co.uk/group/mi...nk=gst&q=peter-t+exif&rnum=1#a835d0543d83193a