I'm trying to download a high res canvas image from
https://axaa2023.mapyourshow.com/8_0/floorplan/ https://ax2023.mapyourshow.com/8_0/floorplan/
If I open the canvas image in a new tab, the text is small and becomes blurry when zooming in If I zoom in on the canvas then open image in new tab, only that part of the image is given
I've tried modifying the dimensions with inspect element which failed. I used JavaScript to download the image but it's still low res:
saveCanvas.toBlob(blob => {
let a = document.createElement("a"),
url = URL.createObjectURL(blob);
a.href = url;
a.download = "image.png";
document.body.appendChild(a);
a.click();
setTimeout(function() {
document.body.removeChild(a);
window.URL.revokeObjectURL(url);
}, 0);
});