1

I am trying to get all properties in C# of an Image file downloaded from camera. I can get general file properties using FileInfo and FileAttributes. But image taken from camera have special properties tab named Camera what I want to retrieve in C#. Here is the snapshot of properties. example image

I want to get special properties like ISO, f-Stops and camera name in C#. Is there any class which can be used to get that or any other open source project?

Glorfindel
  • 21,988
  • 13
  • 81
  • 109
Naveed E Sahar
  • 77
  • 2
  • 12
  • 1
    Take a look at http://stackoverflow.com/questions/220097/read-write-extended-file-properties-c – Fixation Sep 12 '14 at 11:46
  • The Image class does this just fine, use its GetPropertyItem() method. The dreary task of mapping a number to a string and displaying it in a Form is however your job to take care of if you don't just want to use the built-in Windows property sheet. It is the kind of project that has been started many times but never finished :) – Hans Passant Sep 12 '14 at 12:03
  • thank you!!! to fixation, that code gives everything! including what i want.. managed to filter out my required field :) thank you v much to u and to the guy who posted solution to that thread. – Naveed E Sahar Sep 12 '14 at 12:39