captcha-img
v1.1.0
Published
Generate traditional captcha images
Downloads
2
Readme
captcha-img
CaptchaIMG is a very simple node.js module which generates distorted pictures with codes for CAPTCHAs.
Example Use
const captcha = require('captcha-img');
const fs = require('fs');
// generate a captcha
captcha('abc').then(b64 => {
// write the result to /captcha.png
fs.writeFileSync(__dirname + '/captcha.png',
// to remove the 'data:image/png;base64,'
b64.split(',')[1],
'base64'
);
});