Popularity
1.2
Growing
Activity
0.0
Stable
4
1
2
Monthly Downloads: 6
Programming language: Elixir
License: MIT License
Tags:
Images
bump alternatives and similar packages
Based on the "Images" category.
Alternatively, view bump 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]
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
Promo
www.influxdata.com

Do you think we are missing an alternative of bump or a related project?
Popular Comparisons
README
A BMP file writer in pure Elixir.
EXAMPLES:
pixel_data = [[[0xFF,0xFF,0xFF],[0x00,0x00,0x00]],[[0x00,0x00,0x00],[0xFF,0xFF,0xFF]]]
Bump.write(filename: "file.bmp", pixel_data: pixel_data)
pixel_data = Bump.read("file.bmp")
canvas = Canvas.size(%Size{height: 400, width: 400}) |>
Canvas.fill(color: Color.named(:red))
Bump.write(filename: "red.bmp", canvas: canvas)
canvas2 = Canvas.fill(canvas, color: Color.named(:blue),
rect: %Rect{ size: %Size{height: 200, width: 200},
origin: %Point{x: 100, y: 100}})
Bump.write(filename: "redblue.bmp", canvas: canvas2)