From 3b50b395698caf191c695bdc3dd792d110c18911 Mon Sep 17 00:00:00 2001 From: Mike Lynch Date: Wed, 26 Mar 2025 18:33:36 +1100 Subject: [PATCH] Made the downloadable pngs 1200x1200 --- src/components/download.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/download.js b/src/components/download.js index 6bee702..ffd7468 100644 --- a/src/components/download.js +++ b/src/components/download.js @@ -73,7 +73,7 @@ export async function download_as_png (svg) { const opts = { fitTo: { mode: 'width', // If you need to change the size - value: 400, + value: 1200, } }; const resvgJS = new resvg.Resvg(svgstr, opts)