Popularity
6.0
Growing
Activity
0.0
-
29
1
6
Programming language: Crystal
License: MIT License
Tags:
C Bindings
Latest version: v0.3.1
cairo-cr alternatives and similar shards
Based on the "C bindings" category.
Alternatively, view cairo-cr alternatives based on common mentions on social networks and blogs.
-
clang.cr
libclang bindings for crystal (including automatic C bindings generator) -
asound-cr
ALSA/libasound bindings for sound programming in Crystal language.
Clean code begins in your IDE with SonarLint
Up your coding game and discover issues early. SonarLint is a free plugin that helps you find & fix bugs and security issues from the moment you start writing code. Install from your favorite IDE marketplace today.
Promo
www.sonarlint.org
Do you think we are missing an alternative of cairo-cr or a related project?
README
cairo-cr
Cairo bindings for Crystal language.
Installation
First install cairo:
sudo apt-get install libcairo2 libcairo2-dev
Add this to your application's shard.yml
:
dependencies:
x11:
github: TamasSzekeres/x11-cr
cairo:
github: TamasSzekeres/cairo-cr
Then run in terminal:
shards install
See also: x11-cr
Usage
require "x11"
require "cairo"
module YourModule
include X11::C # for low-level usage
include Cairo::C # for low-level usage
include X11 # for high-level usage
include Cairo # for high-level usage
end
For more details see the sample in /examples folder.
Sample
Build and run the low-level sample:
cd examples/sample_window
shards install
make
./sample_window
Build and run the high-level sample:
cd examples/sample_window_hl
shards install
make
./sample_window_hl
Contributing
- Fork it ( https://github.com/TamasSzekeres/cairo-cr/fork )
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create a new Pull Request
Contributors
- TamasSzekeres Tamás Szekeres - creator, maintainer