node,svg-captcha,验证码

var svgCaptcha = require( 'svg-captcha'); //验证码
router. get( '/captcha', function( req, res, next){
var code = svgCaptcha. create({
// 翻转颜色
inverse: false,
ignoreChars: '0o1i',
// 验证码字符中排除 0o1i
// 字体大小
fontSize: 32,
// 噪声线条数
noise: 2,
// 宽度
width: 130,
// 高度
height: 29,
color: false,
});
req. session. captcha = code. text;
res. send( code. data);
});

你可能感兴趣的:(node,svg-captcha,验证码)