An image generator for Shogi's pieces (it's "ko-ma" in Japanese) for Ruby by cairo.
It supports one or two characters.
Add this line to your application's Gemfile:
gem "shogi_koma"
And then execute:
$ bundle
Or install it yourself as:
$ gem install shogi_koma
require "shogi_koma"
painter = ShogiKoma::Painter.new
#painter.width = 200 # as default
#painter.height = 200 # as default
#painter.font = "xxx" # default: "Hiragino Mincho" or "MS Mincho" or "Noto"
painter.write_to_png("歩", "shogi_koma-fu1.png")
painter.write_to_png("歩兵", "shogi_koma-fu2.png")
require "cairo"
require "shogi_koma"
width = 200
height = 200
Cairo::ImageSurface.new(:argb32, width, height) do |surface|
Cairo::Context.new(surface) do |context|
context.scale(width, height)
painter = ShogiKoma::Painter.new
painter.draw(context, "歩")
end
end
- Fork it
- 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 new Pull Request