7

I've made dynamic image generate service like this https://dummyimage.com/ by PHP. now I'm thinking of make a dynamic image generator with nodejs. but it's not as easy as thought. what kind of module can I use for dynamic image generate?

superjang
  • 71
  • 1
  • 1
  • 2

2 Answers2

3

you may use this node module for generating random images. https://www.npmjs.com/package/js-image-generator

Pusku
  • 263
  • 1
  • 12
1

Another possibility is to use the pureimage package which is a pure JavaScript implementation of the HTML Canvas 2D API for NodeJS. It has no native dependencies.

Marcus
  • 745
  • 6
  • 17