Popularity
2.3
Growing
Activity
0.0
Stable
13
1
3
Monthly Downloads: 722
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.
-
ex_image_info
ExImageInfo is an Elixir library to parse images (binaries) and get the dimensions (size), detected mime-type and overall validity for a set of image formats. It is the fastest and supports multiple formats. -
png
A pure Erlang library for creating PNG images. It can currently create 8 and 16 bit RGB, RGB with alpha, indexed, grayscale and grayscale with alpha images. -
gi
DISCONTINUED. Gi is a library for manipulating Graphics Interfacing. Use utility mogrify, identify, ... of GraphicsMagick to resize, draw on base images.... [GET https://api.github.com/repos/LangPham/gi: 404 - Not Found // See: https://docs.github.com/rest]
Stream - Scalable APIs for Chat, Feeds, Moderation, & Video.
Stream helps developers build engaging apps that scale to millions with performant and flexible Chat, Feeds, Moderation, and Video APIs and SDKs powered by a global edge network and enterprise-grade infrastructure.
Promo
getstream.io

Do you think we are missing an alternative of elixir_exif or a related project?
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:
- 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>>)