Click here to Skip to main content
15,881,559 members
Articles / Programming Languages / Visual Basic
Article

The ExifWorks class

Rate me:
Please Sign up or sign in to vote.
4.43/5 (27 votes)
1 Feb 2006MIT2 min read 331.3K   8.9K   87   83
The ExifWorks is a class written in 100% pure managed VB.NET, which allows comfortable reading of embedded EXIF metadata.

What is EXIF

EXIF stands for Exchangeable Image File Format. This format is used for storing various metadata in images, and is widely used mainly in digital still cameras. More information about EXIF can be found here, or in the document Description of the EXIF file format by TsuruZoh Tachibanaya.

When I was trying to find any sources regarding comfort access from .NET environment to these data, I was not successful. So I wrote this class and gave it freely available as open source.

What is ExifWorks

ExifWorks is a class written in 100% pure managed VB.NET, which allows comfort reading and writing of embedded EXIF metadata. It has the following features:

  • Provides the TagNames Enum, which contains user-friendly constant names for all known EXIF parameter IDs.
  • Provides generic functions for reading EXIF parameters: GetInt16, GetInt32, GetString, and GetRational, as well as GetPropertyInt16, GetPropertyInt32, GetPropertyString, and GetPropertyRational. They may be used to simplify the access to all EXIF data from your custom application.
  • Provides a user-friendly abstraction layer for most of the common parameters, allowing easy work with EXIF data and their presentation to end users. The abstraction layer has been developed for presentation, so even if a value is not present, some data (in valid syntax) are provided. Either default values or values computed from other sources (i.e. shutter speed vs. exposure time) are provided. If you need exact data, use the generic functions instead.

The provided test application exread.exe shows working with the ExifWorks class.

Licensing

ExifReader/ExifWorks .NET library

Copyright (c) Michal A. Valášek - Altair Communícations, 2003-2006

This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version.

This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.

The text of the GNU Lesser General Public License (LGPL) is available online here.

License

This article, along with any associated source code and files, is licensed under The MIT License


Written By
Software Developer Altairis
Czech Republic Czech Republic

Software architect and developer in Altairis, dev shop in Czech republic. Microsoft Most Valuable Professional (MVP) since 2004.


See my open source project at Codeplex.


Comments and Discussions

 
GeneralRe: Saving edits Pin
Drew Stegon19-Aug-09 11:16
Drew Stegon19-Aug-09 11:16 
GeneralRe: Saving edits Pin
x38class23-Sep-09 20:26
x38class23-Sep-09 20:26 
GeneralRe: Saving edits Pin
Drew Stegon24-Sep-09 6:13
Drew Stegon24-Sep-09 6:13 
GeneralRe: Saving edits Pin
emompong17-Feb-10 16:33
emompong17-Feb-10 16:33 
GeneralRe: Saving edits Pin
Zisha1-Aug-12 11:20
Zisha1-Aug-12 11:20 
GeneralRe: Saving edits Pin
chuasw2327-Feb-12 15:30
chuasw2327-Feb-12 15:30 
GeneralRe: Saving edits Pin
Member 148628508-Nov-22 9:53
Member 148628508-Nov-22 9:53 
QuestionHow to set / write "rational-data" like latitude / longitude ? [modified] Pin
scooterdd14-Aug-09 0:35
scooterdd14-Aug-09 0:35 
AnswerRe: How to set / write "rational-data" like latitude / longitude ? Pin
Drew Stegon19-Aug-09 17:28
Drew Stegon19-Aug-09 17:28 
QuestionAny way to write tags Pin
gerardkelly21-Jul-09 7:03
gerardkelly21-Jul-09 7:03 
GeneralCannot save ISO info Pin
waex9925-Jun-09 21:59
waex9925-Jun-09 21:59 
GeneralEXIF Thumbnail Pin
Scott Rippey21-Jun-09 9:50
Scott Rippey21-Jun-09 9:50 
GeneralRe: EXIF Thumbnail Pin
Drew Stegon17-Aug-09 5:57
Drew Stegon17-Aug-09 5:57 
AnswerRe: EXIF Thumbnail Pin
Scott Rippey17-Aug-09 8:29
Scott Rippey17-Aug-09 8:29 
GeneralRe: EXIF Thumbnail Pin
Drew Stegon18-Aug-09 13:18
Drew Stegon18-Aug-09 13:18 
GeneralRe: EXIF Thumbnail Pin
Scott Rippey18-Aug-09 20:05
Scott Rippey18-Aug-09 20:05 
GeneralRe: EXIF Thumbnail Pin
Drew Stegon19-Aug-09 11:04
Drew Stegon19-Aug-09 11:04 
GeneralRe: EXIF Thumbnail Pin
Drew Stegon18-Aug-09 13:37
Drew Stegon18-Aug-09 13:37 
Generalc# version with GPS feature (latitude, longitude) Pin
Member 425991919-Jun-09 22:41
Member 425991919-Jun-09 22:41 
GeneralOverwrite the existing file when saving. Pin
Drittsekken11-Jun-09 10:28
Drittsekken11-Jun-09 10:28 
GeneralLatitude/Longitude Pin
Melanie Hugglestone20-Mar-09 11:51
Melanie Hugglestone20-Mar-09 11:51 
GeneralRe: Latitude/Longitude Pin
Coffer7-Jun-09 6:49
Coffer7-Jun-09 6:49 
AnswerRe: Latitude/Longitude Pin
Member 425991919-Jun-09 22:43
Member 425991919-Jun-09 22:43 
GeneralRe: Latitude/Longitude Pin
Coffer20-Jun-09 9:26
Coffer20-Jun-09 9:26 
GeneralRe: Latitude/Longitude Pin
Mark Gray25-Nov-09 11:51
Mark Gray25-Nov-09 11:51 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.