Skip to content

Commit

Permalink
Sync README.md and CONTRIBUTORS lists
Browse files Browse the repository at this point in the history
  • Loading branch information
Mayank Lahiri committed Nov 14, 2015
1 parent 496225f commit 6c5d9d9
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ easyexif

A tiny ISO-compliant C++ EXIF parsing library.

EasyEXIF is a tiny, lightweight C++ library that parses basic information out of EXIF files. It uses only the std::string library and is otherwise pure C++. You pass it the the binary contents of an entire JPEG file, and it parses out a few of the most important EXIF fields for you.
EasyEXIF is a tiny, lightweight C++ library that parses basic information out of EXIF files. It uses only the std::string library and is otherwise pure C++. You pass it the the binary contents of an entire JPEG file, and it parses out a few of the most important EXIF fields for you.

Why use this library? __Include one .h file, compile one .cc file, and that's it.__

Expand All @@ -28,6 +28,7 @@ Reasonable pull requests are gladly accepted.

The following people have committed patches to EasyExif.

* Tomas Volf
* Seth Fowler
* Val Malykh
* Carlos Apablaza Brito
Expand All @@ -41,11 +42,11 @@ The following people have committed patches to EasyExif.


```C++
#include "exif.h"
#include "exif.h"

EXIFInfo result;
result.parseFrom(JPEGFileBuffer, BufferSize);

printf("Camera make : %s\n", result.Make.c_str());
printf("Camera model : %s\n", result.Model.c_str());
printf("Software : %s\n", result.Software.c_str());
Expand All @@ -71,4 +72,4 @@ The following people have committed patches to EasyExif.
printf("GPS Latitude : %f deg\n", result.GeoLocation.Latitude);
printf("GPS Longitude : %f deg\n", result.GeoLocation.Longitude);
printf("GPS Altitude : %f m\n", result.GeoLocation.Altitude);
```
```

0 comments on commit 6c5d9d9

Please sign in to comment.