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文档中有效。