Popularity
2.2
Declining
Activity
0.0
Stable
13
1
3

Monthly Downloads: 592
Programming language: Elixir
License: MIT License
Tags: Images    
Latest version: v0.2.0

elixir_exif alternatives and similar packages

Based on the "Images" category.
Alternatively, view elixir_exif alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of elixir_exif or a related project?

Add another 'Images' Package

README

Library to parse out exif tags and thumbnail data from jpeg/tiff images.

Installation

If available in Hex, the package can be installed as:

  1. Add elixir_exif to your list of dependencies in mix.exs:
  def deps do
    [{:elixir_exif, "~> 0.1.0"}]
  end

Usage

  {:ok, fields, thumbnail} = ElixirExif.parse_file("path/to/image.jpg")

  {:ok, fields, thumbnail} = ElixirExif.parse_binary(<<image binary>>)