首页 > 代码库 > node.js利用captchapng模块实现图片验证码
node.js利用captchapng模块实现图片验证码
安装captchapng模块
npm install captchapng
nodejs中使用
var express = require(‘express‘); var captchapng = require(‘captchapng‘); //验证码 exports.verify= function(req, res, next) { var code = parseInt(Math.random() * 9000 + 1000); req.session.checkcode = code; var p = new captchapng(100, 30, code); p.color(0, 0, 0, 0); p.color(80, 80, 80, 255); var img = p.getBase64(); var imgbase64 = new Buffer(img, ‘base64‘); res.writeHead(200, { ‘Content-Type‘: ‘image/png‘ }); res.end(imgbase64); }
node.js利用captchapng模块实现图片验证码
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。