Launch Week Day 2: Introducing Reports: An Extensible Reporting Framework for Socket Data.Learn More
Socket
Book a DemoSign in
Socket

canvas-writer

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

canvas-writer

Wrapper for node-canvas to help with drawing text.

latest
Source
npmnpm
Version
2.0.1
Version published
Weekly downloads
8
60%
Maintainers
1
Weekly downloads
 
Created
Source

canvas-writer

Wrapper for node-canvas to help with drawing text.

Example

const Canvas = require('canvas');
const CanvasWriter = require('canvas-writer');

let picture = new CanvasWriter(new Canvas(200, 200));

picture.write('Hello world! Text that will probably be wrapped onto the next lines because it\'s longer than that -> ', 100, {
    font: '16px "Segoe UI"',
    style: 'white'
});

console.log(picture.toString());
// Hello world!
// Text that will
// probably be
// wrapped onto
// the next lines
// because it's
// longer than
// that ->

picture.saveFile('./mypicture.png'); // You're done!

Documentation

See the Github wiki for documentation, changelog, and more.

Keywords

node-canvas

FAQs

Package last updated on 17 Dec 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts