HtmlToCanvas crops svg
问题 Trying to achieve whats done here. Only problem my downloaded pdf has image croped brutally by right: I dive into and catch html2canvas method cause the issue not jspdf, So how can I force change svg to png properly using html2canvas component: import PrintButton from "../../../components/print/print"; function QrcodeComponent(props) { return ( <> <div id={"barcodeCont"}> <QRCode level="L" style={{ width: 256 }} value={JSON.stringify({})} /> </div> <PrintButton id="barcodeCont" /> </> ); }