Skip to content
An Elixir library for generating SVG images
Elixir HTML
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Failed to load latest commit information.
config
examples
lib
test
.gitignore
.travis.yml
README.md
mix.exs
mix.lock first passing test Mar 20, 2015

README.md

Build Status Hex.pm

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}}`
Something went wrong with that request. Please try again.