15 unstable releases (3 breaking)

0.3.0-alpha1 Feb 24, 2019
0.2.0 Oct 23, 2018
0.1.4 Sep 26, 2018
0.1.2 Apr 27, 2018
0.0.2 Dec 13, 2015

#253 in Graphics APIs

Download history 38/week @ 2024-11-15 113/week @ 2024-11-22 105/week @ 2024-11-29 209/week @ 2024-12-06 257/week @ 2024-12-13 99/week @ 2024-12-20 63/week @ 2024-12-27 147/week @ 2025-01-03 269/week @ 2025-01-10 206/week @ 2025-01-17 146/week @ 2025-01-24 153/week @ 2025-01-31 246/week @ 2025-02-07 193/week @ 2025-02-14 226/week @ 2025-02-21 136/week @ 2025-02-28

844 downloads per month
Used in 7 crates (via druid-win-shell)

MIT/Apache

145KB
4.5K SLoC

Safe abstractions for drawing on Windows using Direct2D

Example

extern crate direct2d;

use direct2d::{DeviceContext, RenderTarget};
use direct2d::brush::SolidColorBrush;
use direct2d::image::Bitmap;

fn draw(context: &mut DeviceContext, target: &Bitmap) {
    let brush = SolidColorBrush::create(&context)
        .with_color(0xFF_7F_7F)
        .build().unwrap();

    context.begin_draw();
    context.set_target(target);
    context.clear(0xFF_FF_FF);
    
    context.draw_line((10.0, 10.0), (20.0, 20.0), &brush, 2.0, None);
    context.draw_line((10.0, 20.0), (20.0, 10.0), &brush, 2.0, None);

    match context.end_draw() {
        Ok(_) => {/* cool */},
        Err(_) => panic!("Uh oh, rendering failed!"),
    }
}

Dependencies

~0–0.8MB
~13K SLoC