Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jschneider1207/ElixirExif
https://github.com/jschneider1207/ElixirExif
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/jschneider1207/ElixirExif
- Owner: jschneider1207
- License: mit
- Created: 2016-01-02T23:17:32.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2022-04-03T18:52:03.000Z (over 2 years ago)
- Last Synced: 2024-10-18T16:49:56.746Z (about 2 months ago)
- Language: Elixir
- Size: 24.4 KB
- Stars: 13
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- freaking_awesome_elixir - Elixir - Parse exif tags and thumbnail data from jpeg files. (Images)
- fucking-awesome-elixir - elixir_exif - Parse exif tags and thumbnail data from jpeg files. (Images)
- awesome-elixir - elixir_exif - Parse exif tags and thumbnail data from jpeg files. (Images)
README
Library to parse out exif tags and thumbnail data from jpeg/tiff images.
## Installation
If [available in Hex](https://hex.pm/packages/elixir_exif), the package can be installed as:
1. Add elixir_exif to your list of dependencies in `mix.exs`:
```elixir
def deps do
[{:elixir_exif, "~> 0.1.0"}]
end
```## Usage
```elixir
{:ok, fields, thumbnail} = ElixirExif.parse_file("path/to/image.jpg"){:ok, fields, thumbnail} = ElixirExif.parse_binary(<>)
```