如何从html网页生成pdf?

时间:2014-07-30 20:21:08

标签: javascript jquery html5 pdf css-to-pdf

我正在寻找一个库,可以在从按钮点击事件后将我的网页转换为PDF文件。 我正在尝试jspdf,但它打印时没有CSS,我怎样才能使用JavaScript/jQuery并保留我的CSS?还是我可以选择的其他CSS?

3 个答案:

答案 0 :(得分:10)

有一个新的jQuery +云解决方案可以将任何HTML页面及其CSS(包括打印媒体规则)呈现为PDF。解决方案设置为打印网页的任何区域,您只需告诉Formatter您要打印哪个容器元素,库就完成其余的工作。你得到的是一个可嵌入的PDF或后端将推回PDF下载。

这是你的图书馆(GitHub):
https://github.com/Xportability/css-to-pdf

这是你的小提琴:
http://jsfiddle.net/kstubs/jrtM5/

这是一个有效的演示:
http://xep.cloudformatter.com/doc/

目前还没有使用说明,但是跟随样本(查看源代码)应该是非常明确的(查找“打印”按钮),这里或多或少是格式方法的附加选项/参数理解。

options 
{
    pageWidth: "8.5in",             
    pageHeight: "11in", 
    pageMargin: ".25in", 
    pageMarginTop: "1in",
    pageMarginRight: "1in",
    pageMarginBottom: "1in",
    pageMarginLeft: "1in",
    render: ("none"|"newwin<default>"|embed"|"download<default IE>"),
    foStyle: { 
        // puts fo style attributes on the root, ex. fontSize:14px
        foStyleName: 'value', ...
    }           
}

以下是当前支持的CSS属性列表。

[
    'lineHeight', 
    'alignmentBaseline', 
    'backgroundImage', 'backgroundPosition', 'backgroundRepeat', 'backgroundColor',
    'baselineShift', 
    'border',
    'borderWidth', 'borderColor','borderStyle',
    'borderTop','borderLeft','borderRight','borderBotttom',
    'borderTopWidth','borderTopStyle','borderTopColor', 
    'borderBottomWidth','borderBottomStyle','borderBottomColor',
    'borderLeftWidth','borderLeftStyle','borderLeftColor',
    'borderRightWidth','borderRightStyle','borderRightColor',
    'borderCollapse',             
    'clear', 'color', 
    'display', 'direction', 'dominantBaseline', 
    'fill', 'float', 
    'fontStyle', 'fontVariant', 'fontWeight', 'fontSize', 'fontFamily', 
    'listStyleType', 'listStyleImage', 'letterSpacing', 
    'marginTop', 'marginBottom', 'marginLeft', 'marginRight','orphans', 
    'paddingTop', 'paddingRight', 'paddingBottom', 'paddingLeft',
    'pageBreakAfter', 'pageBreakBefore', 
    'tableLayout', 
    'textAlign', 'textAnchor','textDecoration', 'textIndent', 'textTransform', 
    'verticalAlign',
    'widows', 'wordSpacing', 'width'
]

希望这有帮助!

答案 1 :(得分:1)

试试这个npm包htmlto。它使用CSS样式

从html创建PDF
var htmlTo = require('htmlto')

htmlTo.pdf('./public/html/report.html','./public/pdf/report.pdf',{width: 2480, height: 3508})

安装:

npm install -S htmlto

npm install -S phantom

*您还可以指定dimensions.phantom版本^ 4.0.3和节点版本v6.5.0 https://www.npmjs.com/package/htmlto

答案 2 :(得分:1)

我创造了一个简单的&amp;非常容易使用的API,它使用snappy库,基于wkhtmltopdf基于webkit的CLI,以便将HTML页面从URL转换为PDF。这是Github回购:https://github.com/Dellos7/dhtml2pdf

这是如何从锚标记中使用它的示例。这将在新的浏览器选项卡中显示生成的CURLOPT_URL => 'https://.../?nickname=' . $nickname, 站点的PDF:

https://www.github.com

如何使用它下载PDF的示例:

<a href="https://dhtml2pdf.herokuapp.com/api.php?url=https://www.github.com&result_type=show" target="_blank">Show PDF</a>

使用此解决方案,您甚至无需使用javascript来生成PDF。

但如果你仍然需要使用javascript,你可以这样做:

<a href="https://dhtml2pdf.herokuapp.com/api.php?url=https://www.github.com&result_type=download&file_name=my_pdf">Download PDF</a>

在回购中我还解释了如何非常轻松地克隆&amp;在Heroku部署您自己的API,这样您就可以自己保留API,而不是依赖外部服务。