import { toPng } from 'html-to-image' export type ExportQuality = 'standard' | 'high' | 'ultra' export const EXPORT_QUALITY_OPTIONS: { value: ExportQuality; label: string; pixelRatio: number; hint: string }[] = [ { value: 'standard', label: 'Standard', pixelRatio: 1, hint: '1× — small file' }, { value: 'high', label: 'High', pixelRatio: 2, hint: '2× — recommended' }, { value: 'ultra', label: 'Ultra', pixelRatio: 4, hint: '4× — print quality, large file' }, ] export async function exportToPng(element: HTMLElement, quality: ExportQuality = 'high'): Promise { const option = EXPORT_QUALITY_OPTIONS.find((o) => o.value === quality) ?? EXPORT_QUALITY_OPTIONS[1] const dataUrl = await toPng(element, { backgroundColor: '#0d1117', pixelRatio: option.pixelRatio, style: { '--xy-controls-display': 'none', } as Partial, }) const link = document.createElement('a') link.download = 'homelable-canvas.png' link.href = dataUrl link.click() }