thomas-beznik
Results
12
comments of
thomas-beznik
Ah strange! I get this error when opening the src `data:image/svg+xml;base64,${btoa(measurementSvgSerialized)}` in another window.
I was able to solve it by using a UTF-8 encoding: ```` const measurementSvgSrc = `data:image/svg+xml;utf8,${encodeURIComponent( new XMLSerializer().serializeToString(measurementSvg) )}`; // make it ready to be read as a source in...