I need a way to create an image on a magick chart via node.js
I can usually handle this:
gm convert -background transparent -pointsize 30 -gravity Center label:türkçee HEEEEEY.png
I need the equivalent of this input in node.js like;
var gm = require('gm'); gm.background('transparent') .gravity('Center') .fontSize(30) .drawText('Test') .write('HEEEY.png')
PS: I do not want to specify the image size as a parameter. (sorry for my English)
Lupus source share