Preferred in VB.Net, but C # is excellent, how can I access additional properties added to the file using my digital camera, such as Date Picture Taken , Shutter Speed or Camera Model ?
Date Picture Taken
Shutter Speed
Camera Model
The following article should be helpful.
I support a library that offers comprehensive support for extracting image metadata from various file formats.
https://github.com/drewnoakes/metadata-extractor-dotnet
When I built something similar, I used this article . But basically you are looking for EXIF ββdata embedded in the image.
There are many great libraries to extract for you if you do not want to write them from scratch.
You probably want to use the BitmapMetadata class in System.Windows.Media.Imaging .
BitmapMetadata
System.Windows.Media.Imaging
There is a BitmapMetadata sample that can be downloaded from MSDN .