Render Svg to Pdf using jspdf

后端 未结 2 951
栀梦
栀梦 2020-12-01 18:28

I am having trouble in rendering svg element to pdf using jspdf . Iam using plugin https://github.com/CBiX/svgToPdf.js/ to do this.

Below is my code

         


        
2条回答
  •  孤城傲影
    2020-12-01 19:12

    I've tried both svg2pdf.js and addSvgAsImage using canvg internally. Both didn't work well for me, the resulting images in the pdf where either incorrectly positioned or displayed.

    I've ended up doing the following which works very well:

    1. convert the SVG to PNG without any libraries, see my answer to "Convert SVG to image (JPEG, PNG, etc.) in the browser".
    2. just add the result to the pdf using the normal addImage method

提交回复
热议问题