Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kalimehtar/binary-class-exif

Class for reading/changing Exif in JPEG
https://github.com/kalimehtar/binary-class-exif

Last synced: about 1 month ago
JSON representation

Class for reading/changing Exif in JPEG

Awesome Lists containing this project

README

        

binary-class-exif
=================

Class for reading/changing Exif in JPEG

Based on http://planet.racket-lang.org/display.ss?package=mediafile.plt&owner=neil

To test
```racket
(define test (call-with-input-file "yourfile.jpg" read-jpeg-file-props))
(map parse-entry (read-ifd (get-field first-ifd (get-field tiff-header test))))
```
or
```racket
(define test (call-with-input-file "yourfile.tiff" read-tiff-file-props))
(map parse-entry (read-ifd (get-field first-ifd test)))
```