5 unstable releases

0.3.0 Jul 16, 2019
0.2.0 May 11, 2019
0.1.2 Apr 17, 2019
0.1.1 Apr 15, 2019
0.1.0 Apr 3, 2019

#9 in #proper

36 downloads per month
Used in blend2d

MIT/Apache

3.5MB
63K SLoC

C++ 61K SLoC // 0.1% comments JavaScript 2.5K SLoC // 0.1% comments Rust 173 SLoC Shell 75 SLoC // 0.1% comments Batch 28 SLoC

Contains (DOS exe, 80KB) CMakeCXXCompilerId.exe, (DOS exe, 36KB) CMakeDetermineCompilerABI_CXX.bin, (DOS exe, 39KB) feature_tests.bin

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