如何將 html 文件轉換為 pdf?使用在線轉換工具,例如 html to pdf 或 convert web to pdf。安裝瀏覽器擴展,如 print friendly & pdf 或 web to pdf converter。使用命令行工具,如 wkhtmltopdf。在 node.js 中使用 html-pdf 包進行轉換。
如何將 HTML 文件轉換為 PDF
想要將 HTML 文件轉換為 PDF,有以下幾種方法:
1. 使用在線轉換工具
HTML to PDF (https://htmltopdf.com/)
Convert Web to PDF (https://www.convertwebto pdf.com/)
Online2PDF (https://www.online2pdf.com/convert -html-to-pdf)
只需上傳或粘貼您的 HTML 文件即可。這些工具將自動將其轉換為 PDF。
2. 使用瀏覽器擴展
Print Friendly & PDF (Chrome)**
Web to PDF Converter (Firefox)
安裝這些擴展后,可以在瀏覽器中將任何網頁轉換為 PDF。
3. 使用命令行工具
對于 Mac 和 Linux 用戶,可以使用 wkhtmltopdf 工具:
<code>wkhtmltopdf <html_file_path><pdf_file_path></pdf_file_path></html_file_path></code>
登錄后復制
對于 Windows 用戶,可以使用 wkhtmltopdf-win:
<code>wkhtmltopdf-win <html_file_path><pdf_file_path></pdf_file_path></html_file_path></code>
登錄后復制
4. 使用 Node.js 包
可以通過 html-pdf 包在 Node.js 中進行轉換:
<code>const htmlPdf = require('html-pdf'); htmlPdf.create(html, { format: 'A4', orientation: 'portrait' }).toFile('output.pdf', function(err, res) { if (err) return console.log(err); });</code>
登錄后復制
提示:
大多數工具允許您自定義 PDF 的設置,例如頁面大小、頁邊距和圖像質量。
某些工具可能會收取轉換大量文件的費用或提供高級功能。
轉換后的 PDF 文件的質量可能會因所選工具而異。