6 releases

0.3.0 Jul 16, 2019
0.2.0 May 11, 2019
0.1.2 Apr 17, 2019

#2 in #rasterization

Download history 14/week @ 2023-10-28 2/week @ 2023-11-11 9/week @ 2023-11-18 25/week @ 2023-11-25 5/week @ 2023-12-02 6/week @ 2023-12-09 12/week @ 2023-12-23 1/week @ 2023-12-30 1/week @ 2024-01-06 1/week @ 2024-01-13 10/week @ 2024-01-20 24/week @ 2024-01-27 27/week @ 2024-02-10

62 downloads per month

MIT/Apache

3.5MB
69K SLoC

C++ 61K SLoC // 0.1% comments Rust 6K SLoC // 0.0% comments JavaScript 2.5K SLoC // 0.1% comments Shell 74 SLoC // 0.1% comments Batch 27 SLoC Python 4 SLoC

blend2d-rs

Build Status Crates.io Docs.rs

This crate provides rust bindings to the blend2d lib.

  • This project is currently WIP and therefor incomplete, due to this the crate will most likely go through breaking changes until a proper api has been figured out. Bear in mind that blend2d itself is also still in beta, meaning changes in their api will most likely be reflected in this crate as well in one way or another. This also means that some functionality is currently not correctly(or at all) implemented, for example, filling a context with an image will currently return an InvalidValue error.

  • Almost nothing is documented at this point so if confusion arises it might help to check out the C++ docs. This will hopefully change in the near future.

  • Not everything has been tested, so bugs might occur.

Setup

This crate requires CMake to be installed and available on PATH.

Also make sure to initialize the submodules after cloning the repository(git submodule update --init).

Examples

You can find the examples here.

rust_bl_logo

Current Design Decision

  • The Clone Trait is currently implemented in such a way that it does weak clones by using the underlying ref-counting of blend2d. Deep clones can be achieved by using the corresponding DeepClone Trait.
  • OutOfMemory errors returned by blend2d will as of now panic the program by default.

License

Licensed under either of

at your option.

The Rust logo is owned by Mozilla and distributed under the terms of the Creative Commons Attribution license (CC-BY).

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies