1 2 3 4 5 6 7 8 9 10 11 12
|
var simpleCaptcha = require('simple-captcha');
captcha: function(req, res) { var captcha = require('simple-captcha').create({width: 100, height: 40}); req.session.captcha = captcha.text(); console.log(req.session.captcha); captcha.generate(); res.write(captcha.buffer('image/png')); res.end(); }
|