gpt4 book ai didi

javascript - 为什么 html2canvas 生成模糊的 pdf 文件?

转载 作者:行者123 更新时间:2023-11-30 14:14:09 25 4
gpt4 key购买 nike

$('#generate').click(function() {
var pdf = new jsPDF('p', 'pt', 'a4');
pdf.addHTML($('.pg-section').get(0), function() {
pdf.save('Test.pdf');
});
});
.pg-section {
background: white;
}
.pg-section h3 {
padding: 5px;
background: #808080;
text-align: center;
font-size: 14px;
color: #FFF;
font-weight: bold;
margin-bottom: 10px;
}

.pg-tbl {
margin: 15px 0;
border-collapse: collapse;
border: 2px solid blue;
width: 100%;
}

.pg-tbl th {
background: #ccc;
text-align: center;
}

.pg-tbl th,
.pg-tbl td {
border: 2px solid blue;
padding: 5px 4px;
font-size: 10px;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>

<button id="generate">Generate PDF</button>
<div class="pg-section">
<h3 class="h3">User Information</h3>
<table id="tbl1" class="pg-tbl">
<thead>
<tr>
<th>User ID</th>
<th>First</th>
<th>Last</th>
<th>Age</th>
</tr>
</thead>
<tbody>
<tr>
<td id="user_id">5672</td>
<td id="first">John</td>
<td id="last">Kean</td>
<td id="age">29</td>
</tr>
</tbody>
</table>

<h3 class="h3">Building Information</h3>
<table id="tbl9" class="pg-tbl">
<thead>
<tr>
<th rowspan="2">Total</th>
<th colspan="2">Range</th>
</tr>
<tr>
<th>High</th>
<th>Low</th>
</tr>
</thead>
<tbody>
<tr>
<td id="total">45</td>
<td id="low">13</td>
<td id="high">5</td>
</tr>
</tbody>
</table>
</div>

<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/1.5.0/jspdf.debug.js"></script>
<script language="javascript" type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/html2canvas/0.4.1/html2canvas.min.js"></script>

在上面的示例中,我使用 jspdf.debug.jshtml2canvas.min.js 将 div 容器导出到 PDF 文件。生成文件后,我注意到 pdf 看起来很模糊。我想知道如何解决这个问题?有没有办法让 pdf 看起来像原始 html?

最佳答案

把dpi:200或400你会得到清晰的图像

关于javascript - 为什么 html2canvas 生成模糊的 pdf 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53887113/

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