I'm trying to comment on an image using the gm
module, but it only creates the same image I used without the comment.
Code in Context
var gm = require('gm');
gm('api/routes/image1.jpg')
.comment(['Text Example'])
.write('api/routes/image2.png',
function(e) {
console.log(e||'done');
});