以PDF格式下载图表和表格

时间:2015-10-26 07:00:50

标签: javascript java jquery html jspdf

我有一个D3图表和一个引导表。我想在HTMl页面上查看图形和表格。我找到了一些答案,但它们用于表格下载或图表下载。我想要一个合并的PDF。我试过jspdf,但我被卡住了。

以下是jsfiddle的链接。

http://jsfiddle.net/xzZ7n/3301/

function demoFromHTML() {
    var pdf = new jsPDF('p', 'pt', 'letter');
    // source can be HTML-formatted string, or a reference
    // to an actual DOM element from which the text will be scraped.
    source = $('#customers')[0];

    // we support special element handlers. Register them with jQuery-style 
    // ID selector for either ID or node name. ("#iAmID", "div", "span" etc.)
    // There is no support for any other type of selectors 
    // (class, of compound) at this time.
    specialElementHandlers = {
        // element with id of "bypass" - jQuery style selector
        '#bypassme': function (element, renderer) {
            // true = "handled elsewhere, bypass text extraction"
            return true
        }
    };
    margins = {
        top: 80,
        bottom: 60,
        left: 40,
        width: 522
    };
    // all coords and widths are in jsPDF instance's declared units
    // 'inches' in this case
    pdf.fromHTML(
    source, // HTML string or DOM elem ref.
    margins.left, // x coord
    margins.top, { // y coord
        'width': margins.width, // max width of content on PDF
        'elementHandlers': specialElementHandlers
    },

    function (dispose) {
        // dispose: object with X, Y of the last line add to the PDF 
        //          this allow the insertion of new lines after html
        pdf.save('Test.pdf');
    }, margins);
}

后端是在春季MVC。在JQuery或JAVA中下载功能很好。 任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:0)

因此,出于好奇和跳过很多箍,我不完全确定jsPDF是否是最可靠的。首先,使用d3.js将您的图形渲染为SVG,因此最好的办法是将SVG转换为PDF。我发现这个issue似乎fromHTML仍然是一种非常新的方法(它甚至不在内部文档中......)。

他们确实提到他们支持addSVG方法,但我发现也可能not be as ideal as you would like。听起来它仍有一些问题和you aren't alone in asking about SVG for this library

在查看之后我认为这个answer总结得最好 - 结帐PDFKit这为您提供了一种将SVG渲染为PDF的方法,但在查看完文档之后,似乎它们只允许您画?它没有显示将SVG添加到PDF文档的方法。答案还提到了jsPDF的svgToPDF插件,但我看起来很明显这个was merged a while ago所以我不确定它是不是实际上是插件还是内置的。

希望这能提供更多见解。我自己对这个问题很好奇。如果我找到更好的信息,我会更新这个答案。