Popularity
6.5
Growing
Activity
0.0
Declining
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.

Do you think we are missing an alternative of cairo-cr or a related project?

Add another 'C bindings' Shard

README

cairo-cr

Cairo bindings for Crystal language.

Build Status

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

Sample Window

Build and run the high-level sample:

  cd examples/sample_window_hl
  shards install
  make
  ./sample_window_hl

Contributing

  1. Fork it ( https://github.com/TamasSzekeres/cairo-cr/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Contributors