node.js利用captchapng模块实现图片验证码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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模块实现图片验证码的主要内容,如果未能解决你的问题,请参考以下文章
在nginx服务器里面搭建好node.js本地服务器后,利用Node.js的FS模块,实现简单数据的写入和读取