lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


I wish to generate SVG drawings but have no appetite for programs like Inkscape that require me to place every component manually.

`luarocks search svg` and `luarocks search cairo` both turn up nothing,

According to its repository (thank Google!), "EzSVG just wraps the SVG language in a Lua way", but "Interface is not yet finalized and some features are still missing." The author last updated the code six years ago.

Nevertheless, EzSVG has the sort of feel that I want, e.g.
EzSVG.Line(100, 500, 900, 500):rotate(r, 500, 500)
Before I spend too much time on it, though, I wonder whether some list member has a favorite SVG generator that knocks this one for a loop and is currently being maintained.

-- Dirk