Skip to content

Latest commit

 

History

History
73 lines (63 loc) · 2.44 KB

README.md

File metadata and controls

73 lines (63 loc) · 2.44 KB

atrament.js

Tiny JS library for beautiful drawing and handwriting on the HTML Canvas


Atrament is a lightweight library that enables the user to draw smooth, natural drawings and handwriting on the HTML canvas. The algorithm was originally developed about 2 weeks after I started learning JavaScript, as I wanted to build a collaborative drawing space on the web, which ended up being 1WALL. I wanted the drawing to feel natural and comfortable, and the result to be smooth and pleasing. Years later, I've taken the algorithm, improved it, rewrote it in ES6 and made it into a neat little library.

Here's a basic demo.

Enjoy!

Usage

  • Include the script located at dist/atrament.min.js in the <head> tag of your HTML.
  • create a <canvas> tag, e.g.:
<canvas id="mySketcher" width="500px" height="500px">
  • in your JavaScript, call atrament passing in the selector string of your canvas:
var sketcher = atrament('#mySketcher');
//or use a more object-oriented style
var sketcher = new Atrament('#mySketcher');
//you can also pass the canvas Node itself
var sketcher = new Atrament(document.querySelector('#mySketcher'));
  • you can also pass the width, height and default colour to the function:
var sketcher = atrament('#mySketcher', 500, 500, 'orange');
  • that's it, happy drawing!

Options & config

  • clear the canvas:
sketcher.clear();
  • change the line thickness:
sketcher.weight = 20; //in pixels
  • change the colour:
sketcher.colour = `#ff485e`; //just like CSS
  • toggle the Erase mode:
sketcher.mode = `erase`;
sketcher.mode = `draw`;
  • toggle smoothing - having it on makes the drawings look much better, turning it off makes it feel a bit more responsive:
sketcher.smoothing = false;
  • change the opacity:
sketcher.opacity = 0.5; //number between 0-1
  • export as image:
//we have to get the dataURL of the image
var dataURL = sketcher.toImage();
//then we can, for instance, open a new window with it
window.open(dataURL);

Development

To obtain the dependencies, cd into the atrament directory and run npm install. You should be able to then build atrament by simply running npm run build.

I didn't bother writing tests because it's such a small package. Contributions are welcome!