Popularity
6.0
Declining
Activity
2.3
Declining
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.
Developer Ecosystem Survey 2022
Take part in the Developer Ecosystem Survey 2022 by JetBrains and get a chance to win a Macbook, a Nvidia graphics card, or other prizes. We’ll create an infographic full of stats, and you’ll get personalized results so you can compare yourself with other developers.
Promo
surveys.jetbrains.com
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