PDF轉HTML
上面的程式碼範例展示了使用 C# 和 IronPDF 將 PDF 轉換為 HTML 的過程。
要自定義 HTML 輸出,您可以使用 HtmlFormatOptions
類,它提供了多種配置選項。您可以修改背景顏色、標題等方面。 (H1) 顏色、字體大小和文本對齊方式,以符合您的要求。
請記住,在轉換為 HTML 後,原始 PDF 中的交互式表單填寫功能將不再在生成的 HTML 文檔中可用。
using IronPdf; using IronSoftware.Drawing; using System; PdfDocument pdf = PdfDocument.FromFile("sample.pdf"); // Convert PDF to HTML string string html = pdf.ToHtmlString(); Console.WriteLine(html); // Convert PDF to HTML file pdf.SaveAsHtml("myHtml.html"); // PDF to HTML configuration options HtmlFormatOptions htmlformat = new HtmlFormatOptions(); htmlformat.BackgroundColor = Color.White; htmlformat.H1Color = Color.Blue; htmlformat.H1FontSize = 25; htmlformat.H1TextAlignment = TextAlignment.Center; htmlformat.PdfPageMargin = 10; // Convert PDF to HTML file pdf.SaveAsHtml("myHtmlConfigured.html", true, "Hello World", htmlFormatOptions: htmlformat);
IRON VB CONVERTER ERROR developers@ironsoftware.com
Install-Package IronPdf
上面的程式碼範例展示了使用 C# 和 IronPDF 將 PDF 轉換為 HTML 的過程。
要自定義 HTML 輸出,您可以使用 HtmlFormatOptions
類,它提供了多種配置選項。您可以修改背景顏色、標題等方面。 (H1) 顏色、字體大小和文本對齊方式,以符合您的要求。
請記住,在轉換為 HTML 後,原始 PDF 中的交互式表單填寫功能將不再在生成的 HTML 文檔中可用。