У меня возникли проблемы с отображением svg-элемента в pdf с помощью jspdf. Iam, используя плагин https://github.com/CBiX/svgToPdf.js/, чтобы сделать это.
Ниже мой код
// 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
Это просто пустой pdf. Пожалуйста, помогите