Giter VIP home page Giter VIP logo

table-on-canvas's Introduction

Table On Canvas

This package will help you draw tables on the canvas.

Installation

$ npm install table-on-canvas

Background

This project is inspired by another package called "console-table-printer".
It can print a colorful table in the console. Yeah, it looks great.
But for my requirement, i would like to save these tables into image files. So i could share it with other team members.

Example

const painter = require('table-on-canvas');

//1. create a table
painter.createTable();

//2. add header for your table
painter.addHeader({'title': 'title', 'detail': 'detail', 'nums': 'nums'}, { color: 'green'});

//3. add rows for the table
painter.addRow({'title': 'hero', 'detail': 'am coming', 'nums': 34}, { color: 'yellow'});
painter.addRow({'title': "what's your name", 'detail': 'you are welcome.', 'nums': '789788999'}, { color: 'green'});

//4. draw the table on the canvas

let canvas = painter.drawTable();

//5. save the canvas on the png image
let png_image = __dirname + '/test.png';
painter.saveToFile(canvas, png_image);

table-on-canvas's People

Contributors

brian36897 avatar

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.