Crates.io | draw |
lib.rs | draw |
version | 0.3.0 |
source | src |
created_at | 2019-08-26 15:27:06.841155 |
updated_at | 2019-09-19 05:04:27.517234 |
description | A small 2D drawing library |
homepage | |
repository | https://github.com/ragona/draw |
max_upload_size | |
id | 159807 |
size | 978,678 |
WARNING: This library is in early development! Expect changes.
A small Rust library for 2D drawing. Simple display list and vector shapes. Currently supports SVG output, designed to also support PNG and other formats.
// create a canvas to draw on
let mut canvas = Canvas::new(100, 100);
// create a new drawing
let rect = Drawing::new()
// give it a shape
.with_shape(Shape::Rectangle {
width: 50,
height: 50,
})
// move it around
.with_xy(25.0, 25.0)
// give it a cool style
.with_style(Style::stroked(5, Color::black()));
// add it to the canvas
canvas.display_list.add(rect);
// save the canvas as an svg
render::save(
&canvas,
"tests/svg/basic_end_to_end.svg",
SvgRenderer::new(),
)
.expect("Failed to save")
ffmpeg -framerate 60 -pattern_type glob -i '*.png' -c:v libx264 -pix_fmt yuv420p out. mp4
convert -delay 1 *.png output.gif
export RUSTFLAGS='-g'
perf record --call-graph=lbr cargo run --release
perf report