dataURI().then(({ imgURI, blob }) => { const { jsPDF } = window.jspdf const pdf = new jsPDF(); pdf.addImage(imgURI, 'PNG', 0, 0); pdf.save("pdf-chart.pdf"); }) ...
確定! 回上一頁