HTML文件轉PDF
使用 Iron Software 提供的 IronPDF 庫中的 fromHtml
方法將 HTML 檔案轉換為 PDF 文件。 生成的PDF將包含您HTML文件中的完整內容。
在渲染為 PDF 之後,使用 saveAs
方法將文件匯出為當前目錄中的 'output.pdf',或選擇一個指定的路徑。欲了解如何有效使用 IronPDF 進行 PDF 創建和操作的更多資訊,您可以查看 IronPDF 文檔。Iron Software 的官方網站.
import {PdfDocument} from "@ironsoftware/ironpdf"; (async () => { // Render the HTML file const pdf = await PdfDocument.fromHtml("example.html"); // Export the PDF document await pdf.saveAs("output.pdf"); })();
使用 Iron Software 提供的 IronPDF 庫中的 fromHtml
方法將 HTML 檔案轉換為 PDF 文件。 生成的PDF將包含您HTML文件中的完整內容。
在渲染為 PDF 之後,使用 saveAs
方法將文件匯出為當前目錄中的 'output.pdf',或選擇一個指定的路徑。欲了解如何有效使用 IronPDF 進行 PDF 創建和操作的更多資訊,您可以查看 IronPDF 文檔。Iron Software 的官方網站.