我努力使用JSPDF将SVG文件转换为PDF.在这里,我使用以下代码.
var doc = new jsPDF();
var test = $.get('amChart.svg', function(svgText){
// console.log(svgText);
var svgAsText = new XMLSerializer().serializeToString(svgText.documentElement);
console.log(svgAsText);
doc.addSVG(svgAsText, 20, 20, doc.internal.pageSize.width - 20*2)
//console.log(doc);
// Save the PDF
doc.output('datauri');
});
我从这个SO Answer得到这个脚本.它的结果只是空白的PDF.当我在输出之前控制台.log(doc)它会显示结果.但它不会导致PDF …
而且我也从GITHUB URL开始使用SVGELEMENTOPDF功能,我也在这个代码中工作.
// I recommend to keep the svg visible as a preview
var svg = $('#container > svg').get(0);
// you should set the format dynamically, write [width, height] instead of 'a4'
var pdf = new jsPDF('p', 'pt', 'a4');
svgElementToPdf(svg, pdf, {
scale: 72/96, // this is the ratio of px to pt units
removeInvalid: true // this removes elements that could not be translated to pdf from the source svg
});
pdf.output('datauri'); // use output() to get the jsPDF buffer
但是我无法实现它……并且善意地告诉我……如何在JSPDF中解决这个问题