I'm trying to create a button that will start the automatic download of a PDF of the page as it looks with the sass styling. However, everything I try ends up with the styling messed up.

我正在尝试创建一个按钮,它将开始自动下载页面的PDF,因为它看起来与sass风格。然而,我尝试的每一件事最终都被搞砸了。

Here is the page (this is a testing site with several different content types)

这是页面(这是一个测试站点,包含几个不同的内容类型)

But the PDF comes out looking like this:

但是PDF出来的样子是这样的:

I'm pulling jspdf.debug.js and have the following HTML button+script in my page:

我正在拉jspdf.debug.js,在我的页面中有以下HTML按钮+脚本:

<div id="bypass"> <!-- keeps button from showing in PDF -->
    <button id="pdf-new" style="margin: 50px;"><a href="javascript:demoFromHTML()" class="button" style="color: black;">Generate PDF</a></button>
</div>

<script>
    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 = $('#content')[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
            '#bypass': 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);
    }
</script>

How can I make the styling stay consistent from the html to the pdf?

如何使样式从html到pdf保持一致?

1 个解决方案

#1


6

I ended up getting this to work by using html2canvas along with jsPDF.

最后,我使用html2canvas和jsPDF来完成这项工作。

My button that hides itself from pdf with an html2canvas option:

我的按钮隐藏自己从pdf与html2canvas选项:

<div data-html2canvas-ignore="true">
    <button id="pdf-new"><a href="javascript:demoFromHTML()" class="button" style="color: black;">Generate PDF</a></button>
</div>

And the script for the bottom of the html page

以及html页面底部的脚本

<script>
    function demoFromHTML() {
        var pdf = new jsPDF('p', 'pt', 'letter');
        var options = {
            background: '#fff' //background is transparent if you don't set it, which turns it black for some reason.
        };
        pdf.addHTML($('#content')[0], options, function () {
                pdf.save('Test.pdf');
        });
    }
</script>

Also in html2canvas.js I changed:

html2canvas。js我改变:

_html2canvas.Util.isTransparent = function(backgroundColor) {
  return (backgroundColor === "transparent" || backgroundColor === "rgba(0, 0, 0, 0)");
};

to this, in order to avoid that transparent-to-black background

为了避免透明到黑色的背景

_html2canvas.Util.isTransparent = function(backgroundColor) {
  return (backgroundColor === "transparent" || backgroundColor === "rgba(0, 0, 0, 0)" || backgroundColor === undefined);
};

Hope that helps someone!

希望能帮助一些人!

更多相关文章

  1. 图像未加载到HTML页面的jQuery load()中
  2. HTML中使用Ajax进行局部刷新页面
  3. html中页面传递参数不用cookie不用缓存,js方法搞定
  4. 使用下一个div中的文本设置“下一个”按钮的文本
  5. 无法使用引导程序在页面上显示表列
  6. 更改在表Django中选择了其中一个按钮时显示的状态
  7. 仅使用CSS / HTML将鼠标悬停在按钮上时显示div
  8. Html页面Js调用android本地相机和图片
  9. 浮动到页面底部的可变高度页脚的CSS(不是视口)

随机推荐

  1. android 资源收集
  2. Android的ProgressBar以及自定义进度条
  3. Android(安卓)压缩解压zip文件
  4. android_ui对其方式
  5. Android 设置全屏显示
  6. Android APK安装过程及原理详解
  7. Android中设置关键字高亮的方法
  8. android计时demo源代码
  9. 新建Cocos2dx-Android工程
  10. android 动态添加View