Skip to content

Instantly share code, notes, and snippets.

View hand-dot's full-sized avatar
🏠
Working from home

Kyohei Fukuda hand-dot

🏠
Working from home
View GitHub Profile
@kyasu1
kyasu1 / qrCode.ts
Last active March 1, 2025 09:44
A light weight qrcode plugin for pdfme
import type * as CSS from 'csstype';
import { createSvgStr, convertForPdfLayoutProps, isEditable, addAlphaToHex, createErrorElm}
from '@pdfme/schemas/utils';
import { Plugin, UIRenderProps } from '@pdfme/common';
import type { PDFRenderProps, Schema } from '@pdfme/common';
import * as Lucide from 'lucide';
import QRCode from 'qrcode';
const DEFAULT_OPACITY = 1;
const HEX_COLOR_PATTERN = '^#(?:[A-Fa-f0-9]{6})$';
const DEFAULT_BARCODE_BG_COLOR = '#ffffff';