Relative Content

Tag Archive for reactjstypescriptnext.jsqr-codereact-qr-code

Tried downloading an image file(QR Code) created using “next-qrcode”. But not able to find what’s wrong in the code

import { useQRCode } from “next-qrcode”; import html2canvas from “html2canvas”; const { Canvas } = useQRCode(); const qrContainerRef = useRef<HTMLDivElement>(null); const downloadQR = async () => { try { if (!qrContainerRef.current) { throw new Error(“QR container element not found”); } console.log(“QR container element:”, qrContainerRef.current); const canvas = await html2canvas(qrContainerRef.current); console.log(“Captured Canvas:”, canvas); const dataUrl = […]