我在使用jspdf將svg元素渲染爲pdf時遇到困難。 Iam使用插件https://github.com/CBiX/svgToPdf.js/來做到這一點。使用jspdf渲染Svg到PDF使用jspdf
下面是我的代碼
// I recommend to keep the svg visible as a preview
var tmp = document.getElementById("chartContainer");
var svgDoc = tmp.getElementsByTagName("svg")[0];
var pdf = new jsPDF('p', 'pt', 'a4');
svgElementToPdf(svgDoc, pdf, {
scale: 72/96, // this is the ratio of px to pt units
removeInvalid: false // this removes elements that could not be translated to pdf from the source svg
});
pdf.output('datauri'); // use output() to get the jsPDF buffer
據generarting空白的PDF。請幫助
svgToPdf只支持克,線,矩形,橢圓形,圓形,文本元素和一些屬性。把它作爲一個簡單的演示。 – cuixiping
@Priyesh Tiwari:我得到同樣的問題svg pdf轉換,你是如何解決你的問題? –