chunky_svg alternatives and similar packages
Based on the "Images" category.
Alternatively, view chunky_svg 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 chunky_svg or a related project?
README
Chunky SVG
This library is inspired by the Ruby library "Chunky PNG".
It is meant as an experiment to play with the idea of representing expressing charts or visualizations in a higher-level language that renders down to SVG.
Project Status
This is a for-fun and for-learning project. It is not being used in any production systems that I am aware of.
What Can I Draw?
You can drawn any of the SVG primitives like this:
ChunkySVG.render([{:circle, %{cx: 50, cy: 50, r: 40}, nil}])
Which would generate this:
ChunkySVG also knows how to draw other things in terms of SVG primitives:
{:hexagon, %{cx: 50, cy: 50, r: 40}}
{:pentagon, %{cx: 50, cy: 50, r: 40}}
{:octagon, %{cx: 50, cy: 50, r: 40}}