Reputation: 1911
Preferably in VB.Net, but C# is fine, how can I access the extra properties added to a file by my digital camera, like Date Picture Taken
, Shutter Speed
or Camera Model
?
Upvotes: 5
Views: 17728
Reputation: 311245
I maintain a library that offers comprehensive support for extracting image metadata from a variety of file formats.
https://github.com/drewnoakes/metadata-extractor-dotnet
Upvotes: 5
Reputation: 48402
You probably want to use the BitmapMetadata
class in the System.Windows.Media.Imaging
namespace.
There is a BitmapMetadata
sample that can be downloaded from MSDN.
Upvotes: 1