DEV Community

Cover image for Pikaso now supports NodeJs
Ramin
Ramin

Posted on

Pikaso now supports NodeJs

As of version 2.7.0, NodeJs is supported.
This will enable collaboration between backend and frontend sides in creating images.

Using Pikaso in a NodeJs environment is similar to using it in a browser.

Note that you must install node-canvas separately.

npm install canvas
Enter fullscreen mode Exit fullscreen mode
const { Pikaso } = require('pikaso')

const editor = new Pikaso({
  width: 800,
  height: 600
})

editor.shapes.circle.insert({
  x: 200,
  y: 200,
  radius: 40,
  fill: 'blue'
})

const base64Url = editor.export.toImage()
Enter fullscreen mode Exit fullscreen mode

Github:
https://github.com/pikasojs/pikaso

Website:
https://pikaso.app

Top comments (0)