11 个版本

0.3.0 2019 年 9 月 19 日
0.2.9 2019 年 9 月 3 日
0.1.0 2019 年 8 月 26 日

#672 in 图像

Download history 63/week @ 2024-01-11 60/week @ 2024-01-18 36/week @ 2024-01-25 34/week @ 2024-02-01 67/week @ 2024-02-08 94/week @ 2024-02-15 77/week @ 2024-02-22 87/week @ 2024-02-29 114/week @ 2024-03-07 100/week @ 2024-03-14 83/week @ 2024-03-21 81/week @ 2024-03-28 165/week @ 2024-04-04 213/week @ 2024-04-11 100/week @ 2024-04-18 78/week @ 2024-04-25

每月 565 次下载
用于 solute

MIT 许可证

120KB
392

draw

警告:此库处于早期开发阶段!请期待变化。

一个小型的 Rust 2D 绘图库。简单的显示列表和矢量形状。目前支持 SVG 输出,设计上也可以支持 PNG 等其他格式。

示例

// 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")

待办事项列表

  • 贝塞尔曲线
  • 线条
  • 测试
  • 添加更多形状
  • 清理 SVG 渲染器形状
  • 绘制除矩形以外的任何东西
  • 位置
  • 样式
  • 位图图像输出

有用的命令

将 PNG 序列转换为 mp4

ffmpeg -framerate 60 -pattern_type glob -i '*.png' -c:v libx264 -pix_fmt yuv420p out. mp4

将 PNG 序列转换为 gif

convert -delay 1 *.png output.gif

性能分析

export RUSTFLAGS='-g'
perf record --call-graph=lbr cargo run --release
perf report

依赖关系

~1.5MB
~26K SLoC