Skip to content

coderobe/crixel

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

crixel

Crystal sixel renderer

Installation

  1. Add the dependency to your shard.yml:
dependencies:
  crixel:
    github: fliegermarzipan/crixel
  1. Run shards install

Usage

require "crixel"

# create a canvas
width = 5 # px
height = 5 # px
img = SixelImage.new(width, height)

# change pixel color at x, y coords
img.set(3, 3, 0xFF0000_u32)

# draw
img.render_naive_full

Development

TODO: Write development instructions here

Contributing

  1. Fork it (https://github.com/fliegermarzipan/crixel/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

About

crystal sixel renderer lib

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published