Source Releases

Source code of Blend2D including all its dependencies (asmjit) can be downloaded via the following links:

blend2d-0.12.0.zip blend2d-0.12.0.tar.gz

Source code of Blend2D including additional sample applications and benchmarking tool can be downloaded below:

blend2d-0.12.0-all.zip blend2d-0.12.0-all.tar.gz

Note

Source releases are regularly updated and the documentation shown on Blend2D site is always rebuilt when a new source release is uploaded. Source releases contain everything that is required to build Blend2D either statically or dynamically and to use it from other projects. Blend2D is very easy to build with CMake and it's also possible to use a custom build system, see Build Instructions for more details.

File SHA256
blend2d-0.12.0.zip 9125f5a4ef1c04b20bc029c1e706fe1dd8602c2726f02dd81fe49e5db12dd8a5
blend2d-0.12.0.tar.gz 8d2f9466451fc0e464bf67edef34c28391a5bf57d26d684453a03d1a1a5b2730
blend2d-0.12.0-all.zip ef2db220d42b4957ba5f55f4fb26273b0c199d9ec5386b583f6eb29fd47dd755
blend2d-0.12.0-all.tar.gz c92066fcaf6c119e77002aa39d98008d2cba79f69af8371d2748d31305c88cac

Security

We strongly advise to always verify hashes of downloaded files or to use git to fetch Blend2D and its dependencies directly from GitHub. Only the latest release and master branch are officially supported versions. If you use a package manager such as vcpkg or conan, please make sure you are not using an outdated release.

The hashes below can never change once published - if a change occurred, please contact us!

Commit Hashes

Cloning From GitHub

Source code and sample applications are available on github under blend2d organization. We have made our best effort to make it possible to build Blend2D from sources as conveniently as possible.

Blend2D Repositories

  • blend2d - Blend2D library
  • blend2d-apps - Interactive samples that use Blend2D & Qt and benchmarking tool used to compare Blend2D performance with other libraries

Blend2D Dependencies

  • asmjit - Internal dependency required to compile Blend2D with JIT enabled (default)

You can use the following commands to clone Blend2D and AsmJit from GitHub:

# Get Blend2D and its optional dependencies.
$ git clone https://github.com/blend2d/blend2d
$ git clone https://github.com/asmjit/asmjit blend2d/3rdparty/asmjit

# Get Blend2D Apps if you are interested in running demos or Blend2D benchmarking tool.
# (interactive demos require Qt library - build system is compatible with vcpkg)
$ git clone https://github.com/blend2d/blend2d-apps

Blend2D would automatically pick the dependency from 3rdparty/asmjit directory and falls back to ../asmjit, which is used mostly for development.

To compile and run Blend2D tests, either use scripts located in blend2d/tools directory or invoke cmake manually:

# Get Blend2D and optional dependencies.
$ cmake blend2d -B blend2d/build -DCMAKE_BUILD_TYPE=Release -DBLEND2D_TEST=TRUE -DBLEND2D_STATIC=TRUE
$ cmake --build blend2d/build

# And run the samples.
$ ./blend2d/build/bl_sample_1

We have a dedicated Build Instructions page, which contains more detailed information about building and using Blend2D.

Bindings

Blend2D bindings are provided by third parties and are not an official part of Blend2D nor supported by the Blend2D Team. The list of bindings is provided only for convenience and their status and/or completeness is not tracked.

Third Party Bindings

You can use our Gitter Channel to suggest additions to the list or other changes. The recommended license for bindings is to use either Zlib or a license that doesn't require attribution to make it possible to use the bindings under the same conditions as Blend2D.