import { encodePngRgba, fillPixel } from "../media/png-encode.js"; const GLYPH_ROWS_5X7: Record = { "0": [0b01110, 0b10001, 0b10011, 0b10101, 0b11001, 0b10001, 0b01110], "1": [0b00100, 0b01100, 0b00100, 0b00100, 0b00100, 0b00100, 0b01110], "2": [0b01110, 0b10001, 0b00001, 0b00010, 0b00100, 0b01000, 0b11111], "3": [0b11110, 0b00001, 0b00001, 0b01110, 0b00001, 0b00001, 0b11110], "4": [0b00010, 0b00110, 0b01010, 0b10010, 0b11111, 0b00010, 0b00010], "5": [0b11111, 0b10000, 0b11110, 0b00001, 0b00001, 0b10001, 0b01110], "6": [0b00110, 0b01000, 0b10000, 0b11110, 0b10001, 0b10001, 0b01110], "7": [0b11111, 0b00001, 0b00010, 0b00100, 0b01000, 0b01000, 0b01000], "8": [0b01110, 0b10001, 0b10001, 0b01110, 0b10001, 0b10001, 0b01110], "9": [0b01110, 0b10001, 0b10001, 0b01111, 0b00001, 0b00010, 0b01100], A: [0b01110, 0b10001, 0b10001, 0b11111, 0b10001, 0b10001, 0b10001], B: [0b11110, 0b10001, 0b10001, 0b11110, 0b10001, 0b10001, 0b11110], C: [0b01110, 0b10001, 0b10000, 0b10000, 0b10000, 0b10001, 0b01110], D: [0b11110, 0b10001, 0b10001, 0b10001, 0b10001, 0b10001, 0b11110], E: [0b11111, 0b10000, 0b10000, 0b11110, 0b10000, 0b10000, 0b11111], F: [0b11111, 0b10000, 0b10000, 0b11110, 0b10000, 0b10000, 0b10000], T: [0b11111, 0b00100, 0b00100, 0b00100, 0b00100, 0b00100, 0b00100], }; function drawGlyph5x7(params: { buf: Buffer; width: number; x: number; y: number; char: string; scale: number; color: { r: number; g: number; b: number; a?: number }; }) { const rows = GLYPH_ROWS_5X7[params.char]; if (!rows) { return; } for (let row = 0; row < 7; row += 1) { const bits = rows[row] ?? 0; for (let col = 0; col < 5; col += 1) { const on = (bits & (1 << (4 - col))) !== 0; if (!on) { continue; } for (let dy = 0; dy < params.scale; dy += 1) { for (let dx = 0; dx < params.scale; dx += 1) { fillPixel( params.buf, params.x + col * params.scale + dx, params.y + row * params.scale + dy, params.width, params.color.r, params.color.g, params.color.b, params.color.a ?? 255, ); } } } } } function drawText(params: { buf: Buffer; width: number; x: number; y: number; text: string; scale: number; color: { r: number; g: number; b: number; a?: number }; }) { const text = params.text.toUpperCase(); let cursorX = params.x; for (const raw of text) { const ch = raw in GLYPH_ROWS_5X7 ? raw : raw.toUpperCase(); drawGlyph5x7({ buf: params.buf, width: params.width, x: cursorX, y: params.y, char: ch, scale: params.scale, color: params.color, }); cursorX += 6 * params.scale; } } function measureTextWidthPx(text: string, scale: number) { return text.length * 6 * scale - scale; // 5px glyph + 1px space } export function renderCatNoncePngBase64(nonce: string): string { const top = "CAT"; const bottom = nonce.toUpperCase(); const scale = 12; const pad = 18; const gap = 18; const topWidth = measureTextWidthPx(top, scale); const bottomWidth = measureTextWidthPx(bottom, scale); const width = Math.max(topWidth, bottomWidth) + pad * 2; const height = pad * 2 + 7 * scale + gap + 7 * scale; const buf = Buffer.alloc(width * height * 4, 255); const black = { r: 0, g: 0, b: 0 }; drawText({ buf, width, x: Math.floor((width - topWidth) / 2), y: pad, text: top, scale, color: black, }); drawText({ buf, width, x: Math.floor((width - bottomWidth) / 2), y: pad + 7 * scale + gap, text: bottom, scale, color: black, }); const png = encodePngRgba(buf, width, height); return png.toString("base64"); }