Skip to content

nicoandresr/js-canvas

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

js-webcam

A simple utility for canvas operations.

Using

install from npm

nmp -i js-canvas

you can create a canvas in the document:

import Canvas from 'js-canvas';

here you can create a canvas for any operation.

const width = 800;
const height = 600;
const canvas = Canvas.create(width, height);

also you can put a image data in the create method

const imageData = new ImageData();
const canvas = Canvas.create(width, height, imageData);

About

Utility for canvas operations.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published