Crates.io | svggen |
lib.rs | svggen |
version | 2.0.0 |
source | src |
created_at | 2022-04-08 20:27:30.459406 |
updated_at | 2022-04-22 16:28:49.63136 |
description | Allows you to create vector images from templates. |
homepage | |
repository | https://github.com/Tipragot/svggen |
max_upload_size | |
id | 564426 |
size | 24,835 |
An image generation system that allows you to create vector images from templates.
A template is an image (in svg format) with special lines that will be replaced by the argument given in the generation command.
In a template, each line that matches #GET n
will be replaced by the index argument n
.
<svg width="100" height="100">
<!-- The line will be replaced by the index argument `0` -->
#GET 0
</svg>