Popularity
6.4
Declining
Activity
0.0
Stable
32
3
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.
InfluxDB - Purpose built for real-time analytics at any scale.
InfluxDB Platform is powered by columnar analytics, optimized for cost-efficient storage, and built with open data standards.
Promo
www.influxdata.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