Skip to content

Instantly share code, notes, and snippets.

@jiaowochunge
jiaowochunge / simple js captcha
Last active October 16, 2022 02:45
simple js captcha, front end validate
function Captcha() {
const CharSet = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
const canvas = document.createElement('canvas');
canvas.width = 160;
canvas.height = 50;
const ctx = canvas.getContext("2d");
function addCharToCanvas(ctx, char, index) {
const fontSize = 30, x = 10, y = 40;