danieldg
danieldg
This is an API break (must go in 0.12). Fixes #162.
Using tiny-skia-0.11.4: ```rust use tiny_skia::*; fn main() { let mut pixmap = Pixmap::new(100, 10).unwrap(); let paint = Paint { shader: Shader::SolidColor(Color::BLACK), anti_alias: true, ..Default::default() }; let rect = Rect::from_ltrb(88.1, 0.,...
The documentation claims that this function: > Converts into an IntRect rounding outwards. However, the following code prints `Some(IntRect { x: 1, y: 1, width: 2, height: 2 })` which...