我使用canvg将svg元素渲染到画布上并使用jspdf下载它。 下面是我的代码:
svgElement = jQuery('#svg');
canvas = jQuery('<canvas />').attr({
width: svgElement.width(),
height: svgElement.height()
}).get(0);
ctx = canvas.getContext("2d");
canvg(canvas, svgElement.outerHTML(), {ignoreMouse: true, ignoreAnimation: true});
imgData = canvas.toDataURL("image/png");
pdf = new jsPDF('landscape' , 'pt', [svgElement.height(), svgElement.width()]);
pdf.addImage(imgData, 'PNG', 0, 0);
pdf.save('download.pdf');
但是pdf上的图像看起来很模糊,不像原始图像那样清晰明了(只是忽略背景差异):
我认为这可能是因为canvg将svg渲染到画布上的步骤。但我不知道如何解决它,任何人都可以提供帮助吗?
答案 0 :(得分:0)