Giter Site home page Giter Site logo

fgbot_irc-colorcode-render's Introduction

irc-colorcode-render

parses irc colorcodes, and converts them to images

works in browsers and with node

api

rendering

colorcode.to_canvas(text [, opts])

renders colorcode text to a canvas, and returns the canvas. text can be a string or json.

the function will return immediately, but the canvas might be drawn asynchronously, if it is waiting for a font to load. you can pass a callback function to be called when the canvas is complete in opts:

colorcode.to_canvas("hello world", {done: function(canvas){ ... }})

if opts has a canvas property, that canvas will be drawn on instead of creating one.

styles

opts can also contain other properties like palette (sets color scheme) or fg (sets initial foreground text color). styles can also be set globally on colorcode.style, for example:

colorcode.style.palette = 'mirc'

parsing

colorcode.to_json(text [, opts])

parses a colorcode into a json structure. the json has a width and height (measured in characters), and an array lines that has an array for each line of text. each line is an array of objects for each character. each character object has a unicode value, a fg and bg, which are foreground and background color numbers, and b, i, u (bold/italic/underline) styling flags.

installation

browser

you can just include the file build/irc-colorcode-render.js

running make will recompile the browser build of irc-colorcode-render.js

node

this is a little more involved :(

assuming debian/ubuntu, install cairo dependencies:

sudo apt-get update
sudo apt-get install libcairo2-dev libjpeg8-dev libpango1.0-dev libgif-dev build-essential g++

(for other systems, check node-canvas wiki)

if you don't have npm/node, install it:

sudo apt-get install npm
sudo npm update -g npm
sudo npm install -g n
sudo n stable

finally,

sudo npm install irc-colorcode-render

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.