-
file details
Hello All
I have made an app that resizes images however in windows if you right click and slect properties on the image file there is a details tab and it has lots of data, time created, what model of camera, exposure settings ..... ect.
How can i read this in my application?
thanks
This does not bring in the items in the details list. The image is a tiff file
Code:
Dim fileDetail As IO.FileInfo
fileDetail = My.Computer.FileSystem.GetFileInfo(FBA)
Console.WriteLine("Size: " & fileDetail.L & " byte(s)")
-
Re: file details
that information is written in the image's EXIF data. here's some more information:
http://www.vbforums.com/showthread.p...ge+orientation
edit: but i'm not sure if that applies to tiff files
-
Re: file details
Thanks I'll take a look ;-)