彩票走势图

Word控件Spire.Doc 转换教程(十五):在 C# 中将 HTML 文件转换为 PDF 和 XPS

翻译|使用教程|编辑:胡涛|2022-03-16 16:46:09.450|阅读 224 次

概述:本篇文章主要介绍了如何使用Spire.Doc 在 C# 中将 HTML 文件转换为 PDF 和 XPS,欢迎查阅!

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

相关链接:

HTML 文件广泛用于收集数据,出于安全,我们需要将其转换为 PDF 和 XPS 格式的可打印文档。您可以使用Spire.PDF轻松地将 URL 中的 HTML 页面转换为高质量的 PDF。本文将重点演示如何借助Spire.Doc将 HTML 文件转换为 PDF 和 XPS 格式的可打印文档。

Spire.Doc for.NET 最新下载

首先,检查将转换为 PDF 和 XPS 的 html 文件。

其次,下载 Spire.Doc 并安装在您的系统上。Spire.Doc 安装干净、专业,并包含在 MSI 安装程序中。

然后,   通过以下路径在下载的 Bin 文件夹中添加 Spire.Doc.dll 作为参考:“..\Spire.Doc\Bin\NET4.0\ Spire.Doc.dll”。

Convert HTML file to PDF and XPS


现在介绍如何将 HTML 转换为 PDF 和 XPS 的步骤。

第 1 步:从文件加载 HTML 文件。


Document document = new Document();
document.LoadFromFile("Good.htm", FileFormat.Html, XHTMLValidationType.None) ;


第 2 步:将 HTML 保存为 PDF 和 XPS 的文件格式。


//Save html to PDF.
document.SaveToFile("Sample.pdf", FileFormat.PDF);
//Save html to XPS.
document.SaveToFile("Sample.xps", FileFormat.XPS);


调试后,请检查以下 PDF 和 XPS 文件作为结果。

HTML 转 PDF

完整代码:


using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using Spire.Doc;
using Spire.Doc.Documents;
using Spire.Doc.Fields;

namespace HTML2PDFXPS
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();

}

private void button1_Click(object sender, EventArgs e)
{
Document document = new Document();
document.LoadFromFile("Good.htm", FileFormat.Html, XHTMLValidationType.None);

//Save html to PDF.
document.SaveToFile("Sample.pdf", FileFormat.PDF);
}

private void button2_Click(object sender, EventArgs e)
{
Document document = new Document();
document.LoadFromFile("Good.htm", FileFormat.Html, XHTMLValidationType.None);

//Save html to PDF.
document.SaveToFile("Sample.xps", FileFormat.XPS);
}
}
}



欢迎下载|体验更多E-iceblue产品

如需获取更多产品相关信息请咨询 

标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn


为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP