1. captchapng
A numeric captcha generator for Node.js
captchapng
Package: captchapng
Created by: GeorgeChan
Last modified: Mon, 13 Jun 2022 05:35:42 GMT
Version: 0.0.1
License: BSD
Downloads: 4,290
Repository: https://github.com/GeorgeChan/captchapng

Install

npm install captchapng
yarn add captchapng

#Captcha PNG generator
A numeric captcha generator for Node.js

##Features

  • Only generate numeric captcha PNG image
  • Build-in fonts
  • Characters up and down, left and right limits, random displacement
  • Full JavaScript

##Examples

 /**
 * Captcha PNG img generator
 * @Author: George Chan
 * @Email: [email protected]
 * @Version: 1.0
 * @Date: 2013-08-18
 * @license http://www.opensource.org/licenses/bsd-license.php BSD License
 */

var http = require('http');
var captchapng = require('captchapng');

http.createServer(function (request, response) {
    if(request.url == '/captcha.png') {
        var p = new captchapng(80,30,parseInt(Math.random()*9000+1000)); // width,height,numeric captcha
        p.color(0, 0, 0, 0);  // First color: background (red, green, blue, alpha)
        p.color(80, 80, 80, 255); // Second color: paint (red, green, blue, alpha)

        var img = p.getBase64();
        var imgbase64 = new Buffer(img,'base64');
        response.writeHead(200, {
            'Content-Type': 'image/png'
        });
        response.end(imgbase64);
    } else response.end('');
}).listen(8181);

console.log('Web server started.\n http:\\127.0.0.1:8181\captcha.png');

Dependencies

RELATED POST

10 Must-Know Windows Shortcuts That Will Save You Time

10 Must-Know Windows Shortcuts That Will Save You Time

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Navigating AWS Networking: Essential Hacks for Smooth Operation

Navigating AWS Networking: Essential Hacks for Smooth Operation

Achieving Stunning Visuals with Unity's Global Illumination

Achieving Stunning Visuals with Unity's Global Illumination

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code