image64 alternatives and similar packages
Based on the "Images" category.
Alternatively, view image64 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
Gi is a library for manipulating Graphics Interfacing. Use utility mogrify, identify, ... of GraphicsMagick to resize, draw on base images....
CodeRabbit: AI Code Reviews for Developers

Do you think we are missing an alternative of image64 or a related project?
Popular Comparisons
README
ImageBase64Handler
What is image64
image64 is a library for elixir that helps convert base64 images into regular image files.
Installation
If available in Hex, the package can be installed as:
Add image64 to your list of dependencies in
mix.exs
:def deps do [{:image64, "~> 0.0.1"}] end
Ensure image64 is started before your application:
def application do [applications: [:image64]] end
Usage
First import the module
import ImageBase64Handler
if you want to convert a base64 url and output it to a file
base64ToImage(base64data, fileOutputPath)
This will output the image to the designated fileOutputPath
if you want to convert base64 file and convert it to an image file
base64urlFiletoImage(fileInputPath, fileOutputPath)
if you want to convert a image to a base64url file
imagetobase64(fileInputPath, fileOutputPath)
This will take a image file path and an output file path and output the base64 data into that file
Those are the two key functions to convert to and from base64 images
Think something should be added?
Open a issue or pull request and I will take a look.