gpt4 book ai didi

javascript - jsPdf 从隐藏的 html 生成 pdf

转载 作者:太空宇宙 更新时间:2023-11-04 01:37:26 24 4
gpt4 key购买 nike

我尝试使用 jsPdf 和 html2canvas 从 html 生成 pdf。

但是当我的 div 不可见时,我得到错误:

IndexSizeError: Index or size is negative or greater than the allowed amount and cant create pdf.

如果我的 div 可见,则一切正常。

我该如何解决我的问题?如何从隐藏的 html 创建 pdf?

我试着做了类似的事情:

$("#btn").click(function() {
var pdf = new jsPDF('p', 'pt', 'letter');
pdf.addHTML($('#testDiv')[0], function() {
pdf.save('PdfFile.pdf');
});
});
#testDiv {
position: absolute;
left: -9999px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="testDiv" style="display: none">
<p>Some text to pdf</p>
</div>

但我得到的是带有黑色区域的 pdf,仅此而已。

使用 CSS 添加我的代码:

    <div id="template_invoice">
<div id="first_head">
<div id="logo_invoice">
<img src="logo.PNG" width="200px">
</div>
<div id="main_header_info">hth</div>
</div>
<div class="clearFix"></div>
</div>

<style>
html{
background: #fff !important;
}
#first_head,#second_head,#content_invoice{
width: 100%;
}
#logo_invoice, #main_header_info,#lead_address,#lead_invoice_info{
width: 50%;
float:left;
}
.clearFix{
float:none;
clear:both;
}
#second_head{
margin-top: 100px;
}
#template_invoice{
margin: 0 auto;
width: 1170px;
}
#template_invoice{
visibility: hidden;
width: 0px;
height: 0px;
}
</style>

<script>


function demoFromHTML() {
var pdf = new jsPDF('p', 'pt', 'letter');
source = $('#template_invoice')[0];
specialElementHandlers = {
'#bypassme': function (element, renderer) {
return true
}
};
margins = {
top: 10,
bottom: 10,
left: 10
};
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) {
pdf.save('Test.pdf');
}, margins);
}
</script>

最佳答案

试试这个 CSS:

#testDiv{
visibility:hidden;
height:0px;
}

希望它能奏效。

我试过这个,它有效。

脚本

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);
}

HTML

<div id="customers">
<table id="tab_customers" class="table table-striped">
<colgroup>
<col width="20%">
<col width="20%">
<col width="20%">
<col width="20%">
</colgroup>
<thead>
<tr class='warning'>
<th>Country</th>
<th>Population</th>
<th>Date</th>
<th>Age</th>
</tr>
</thead>
<tbody>
<tr>
<td>Chinna</td>
<td>1,363,480,000</td>
<td>March 24, 2014</td>
<td>19.1</td>
</tr>
<tr>
<td>India</td>
<td>1,241,900,000</td>
<td>March 24, 2014</td>
<td>17.4</td>
</tr>
<tr>
<td>United States</td>
<td>317,746,000</td>
<td>March 24, 2014</td>
<td>4.44</td>
</tr>
<tr>
<td>Indonesia</td>
<td>249,866,000</td>
<td>July 1, 2013</td>
<td>3.49</td>
</tr>
<tr>
<td>Brazil</td>
<td>201,032,714</td>
<td>July 1, 2013</td>
<td>2.81</td>
</tr>
</tbody>
</table>
</div>
<button onclick="javascript:demoFromHTML();">PDF</button>

CSS

#customers{
visibility:hidden;
height:0px;
}

关于javascript - jsPdf 从隐藏的 html 生成 pdf,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45960162/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com