How do I create easily a PDF from an SVG with jsPDF?

前端 未结 5 1272
逝去的感伤
逝去的感伤 2020-12-05 16:21

I\'m trying to create a pdf but I have some SVG pictures. I found information about this problem, but I just have to use JavaScript, that\'s to say, no jQuery.

I fou

相关标签:
5条回答
  • 2020-12-05 16:37

    You can use the canvas plugin that comes with jsPDF to render the SVG on the PDF with canvg. I've had to set a few dummy properties on the jsPDF canvas implementation, and disable the interactive/animation features of canvg for this to work without errors:

    var jsPdfDoc = new jsPDF({
        // ... options ...
    });
    
    // ... whatever ...
    
    // hack to make the jspdf canvas work with canvg
    jsPdfDoc.canvas.childNodes = {}; 
    jsPdfDoc.context2d.canvas = jsPdfDoc.canvas;
    jsPdfDoc.context2d.font = undefined;
    
    // use the canvg render the SVG onto the 
    // PDF via the jsPDF canvas plugin.
    canvg(jsPdfDoc.canvas, svgSource, {
        ignoreMouse: true,
        ignoreAnimation: true,
        ignoreDimensions: true,
        ignoreClear: true
    });
    

    This seems to me a much better solution than the SVG plugin for jsPDF, as canvg has much better support of SVG features. Note that the width and height properties should be set on the <svg/> element of your SVG for canvg to render it correctly (or at least so it seemed to me).

    0 讨论(0)
  • 2020-12-05 16:42

    I got this plugin working, but only with SVG file from the tests and the I saw in the doc that only PATHs are supported :(

    There is already the issue on github https://github.com/MrRio/jsPDF/issues/384

    If paths are ok for here is my code (it's more or less the code from the tests):

    function demoSvgDocument() {
        var doc = new jsPDF();
        var test = $.get('013_sillysvgrenderer.svg', function(svgText){
            var svgAsText = new XMLSerializer().serializeToString(svgText.documentElement);
            doc.addSVG(svgAsText, 20, 20, doc.internal.pageSize.width - 20*2)
    
            // Save the PDF
            doc.save('TestSVG.pdf');
        });
    }       
    

    Another point to consider, you have to run all examples on a server. Otherwise you won't see any results probably because of the security

    0 讨论(0)
  • 2020-12-05 16:43

    There now is svg2pdf.js which uses a fork of jsPDF. It has been created to solve this exact task: Exporting an SVG to a PDF.

    Also in the meantime, jsPDF also added a demo that shows how to possibly export SVG using canvg and the jsPDF canvas implementation.

    The two solutions have different advantages and disadvantages, so you might want to try both and see if one of them suits your needs.

    0 讨论(0)
  • 2020-12-05 16:45

    Try canvg for that to covert SVG to Canvas. Then convert the canvas to base64 string using .toDataURL().

    More detailed answer is here https://stackoverflow.com/a/35788928/2090459

    Check the demo here http://jsfiddle.net/Purushoth/hvs91vpq/

    Canvg Repo: https://github.com/gabelerner/canvg

    0 讨论(0)
  • 2020-12-05 16:51

    I modified this from: https://medium.com/@benjamin.black/using-blob-from-svg-text-as-image-source-2a8947af7a8e

    var yourSVG = document.getElementsByTagName('svg')[0];
    //or use document.getElementById('yourSvgId'); etc.
    
    yourSVG.setAttributeNS('http://www.w3.org/2000/xmlns/', 'xmlns', 'http://www.w3.org/2000/svg');
    yourSVG.setAttributeNS('http://www.w3.org/2000/xmlns/', 'xmlns:xlink', 'http://www.w3.org/1999/xlink');
    
    var serializer = new XMLSerializer();
    var serialSVG = serializer.serializeToString(yourSVG);
    
    var svg = serialSVG;
    
    var blob = new Blob([svg], {type: 'image/svg+xml'}); 
    var url = URL.createObjectURL(blob);
    var image = document.createElement('img');
    
    // image.addEventListener('load', () => URL.revokeObjectURL(url), {once: true});    
    //changed above line using babel to code below;
    
    image.addEventListener('load', function () {
        return URL.revokeObjectURL(url);
        }, { once: true });
    
    image.src = url;
    
    //Then just use your pdf.addImage() function as usual;
    
    0 讨论(0)
提交回复
热议问题