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
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!
希望能帮助一些人!