Popularity
2.3
Declining
Activity
0.0
Stable
12
1
3
Monthly Downloads: 576
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.
-
mogrify
Image processing in Elixir (ImageMagick command line wrapper) -
cloudex
An elixir library which helps with uploading image files or urls to cloudinary -
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. -
exexif
Pure elixir library to extract tiff and exif metadata from jpeg files -
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. -
thumbnex
Elixir library to create thumbnails from images and video screenshots. -
eikon
Eikōn is an Elixir library providing a read-only interface for image files. -
gi
Gi is a library for manipulating Graphics Interfacing. Use utility mogrify, identify, ... of GraphicsMagick to resize, draw on base images....
Learn Elixir in as little as 12 Weeks
A structured learning environment with practical assignments, code reviews, weekly live coaching sessions, job-hunting assistance, and more. Try a Free Preview today!
Promo
learn-elixir.dev
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>>)