html - 使用 jspdf 字体将 HTML 表导出为 pdf 不支持

标签 html pdf fonts jspdf export-to-pdf

我需要使用 jspdf 将 HTML 表导出为 pdf 文件。我尝试了下面的代码,它可以工作,但不支持我的字体。这是演示 http://jsfiddle.net/lemonkazi/5o27wo2q/

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 = $('#printableArea')[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);
}
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet"/>
<script src="http://mrrio.github.io/jsPDF/dist/jspdf.debug.js"></script>
<div id="printableArea">
			
	 
	        <table>
				<thead>
					<tr><th>ক্রমিক নং</th>
					<th class="psub">প্রকল্পের ধরন</th>
					<th class="punit">সংখ্যা</th>
                    <th class="punit">
                    	দৈর্ঘ্য                    	

                    </th>
					<!--<th>দৈর্ঘ্য</th>
					<th>প্রস্থ</th>
					<th>উচ্চতা/গভীরতা </th>
					<th>ক্ষেত্রফল</th>
					<th>অন্যান্য</th>		-->
					<th class="ptotal">বরাদ্দের পরিমাণ</th>
					<th class="ptotal">ব্যয়ের পরিমাণ</th>
					<th class="pyear">অগ্রগতীর হার %</th>	
				
				</tr></thead>
								<tbody><tr>
					<td>1</td>
					<td class="pdes">
	                                     রাস্তা নির্মাণ	                                                        </td>
					<td class="psub">255</td>
                    <td class="punit">14166525</td>
					<!--<td></td>
					<td></td>
					<td></td>
					<td></td>		
					<td></td> -->
					<td class="ptotal">2357.01</td>
					<td class="ptotal">2357.01</td>
					<td class="pyear">						                100.00

					</td>
					
				</tr>
								<tr>
					<td>2</td>
					<td class="pdes">
	                                     রাস্তা পুনর্নিমাণ	                                                        </td>
					<td class="psub">2933</td>
                    <td class="punit">162942815</td>
					<!--<td></td>
					<td></td>
					<td></td>
					<td></td>		
					<td></td> -->
					<td class="ptotal">25163.47</td>
					<td class="ptotal">25035.20</td>
					<td class="pyear">						                99.49

					</td>
					
				</tr>
								<tr>
					<td>3</td>
					<td class="pdes">
	                                     রাস্তা মেরামত	                                                        </td>
					<td class="psub">1576</td>
                    <td class="punit">87554680</td>
					<!--<td></td>
					<td></td>
					<td></td>
					<td></td>		
					<td></td> -->
					<td class="ptotal">14087.86</td>
					<td class="ptotal">14077.93</td>
					<td class="pyear">						                99.93

					</td>
					
				</tr>
					                          <tr>
					<td></td>
					<td></td>
					<td>মোটঃ4764</td>
					<td>মোটঃ264664</td>
					<td>মোটঃ 41608.34</td>
					<td>মোটঃ 41470.14</td>
					
					<td>
						গড়ঃ
						:99.81</td>
				</tr>
			</tbody></table>

			
	    </div>
<button onclick="javascript:demoFromHTML();">PDF</button>

或者如果您想在没有 jspdf 的情况下提供任何其他建议,您可以建议我。

最佳答案

UTF-8/TTF:
PDF 中的 14 种标准字体仅限于 ASCII 代码页。如果您想使用 UTF-8,您必须集成自定义字体,它提供所需的字形。 jsPDF 支持 .ttf 文件。因此,如果您想在 pdf 中包含中文文本,则您的字体必须具有必要的中文字形。因此,请检查您的字体是否支持所需的字形,否则它将显示空格而不是文本。 要将字体添加到 jsPDF,请使用 /fontconverter/fontconverter.html 中的字体转换器。 fontconverter 将创建一个 js 文件,其中包含提供的 ttf 文件的内容作为 base64 编码字符串和 jsPDF 的附加代码。您只需将此生成的 js 文件添加到您的项目中即可。然后,您就可以在代码中使用 setFont-method 并编写 UTF-8 编码文本了。 https://rawgit.com/MrRio/jsPDF/master/docs/index.html

你可以尝试这样的事情(TypeScript):

  1. 通过字体转换器转换字体(链接 here )
  2. 然后将此字体包含在您的代码中

import { robotoFont } from '../../fonts/roboto.font'; //converted font

pdfDocument = new jsPDF();
pdfDocument.addFileToVFS('Roboto-Regular-normal.ttf', robotoFont);
pdfDocument.addFont('Roboto-Regular-normal.ttf', 'Roboto-Regular', 'normal');
pdfDocument.setFont('Roboto-Regular');

或查看this回答

2 :

关于html - 使用 jspdf 字体将 HTML 表导出为 pdf 不支持,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34652669/

相关文章:

javascript - Node Ejs 模块,包括不工作

javascript - Select2 多个选择和允许标签的默认值

javascript - 如何制作一个 float 在页面底部的 float div

android - 将 PDF 加载到 Android webview 中

java - 在 Swing 中输入带有乌尔都语字体的文本时不显示英文字符

html - 如何让文字环绕图像?

java - 使用 PDFBox 渲染包含填充表单字段的文档适用于 1.8.2,但不适用于 2.0.2

php - PDF裁剪PHP库

android - 在运行时设置字体,TextView

fonts - 如何在 Svelte 中加载和使用自定义字体