彩票走势图

logo E-iceblue中文文档

将 Word 转换为 PCL


PCL 文件是以打印机命令语言(通常称为 PCL)页面描述语言创建的数字打印文档。从v7.1.19 开始,Spire.Doc 支持将 word 文档转换为 PCL。PCL文件的标准有很多种;这里的 PCL 是指 PCL 6(PCL 6 Enhanced 或 PCL XL)。本文将向您展示如何仅通过三行代码将 C# 和 VB.NET 中的 Word 文档保存到 PCL 中。

Spire.Doc for.NET 最新下载

以下将直接展示代码:

[C#]

using Spire.Doc;

namespace DOCPCL
{
class Program
{
static void Main(string[] args)
{
//load the sample document
Document doc = new Document();
doc.LoadFromFile("Sample.docx", FileFormat.Docx2010);

//save the document as a PCL file
doc.SaveToFile("Result.pcl", FileFormat.PCL);

 

}
}
}

[VB.NET]

using Spire.Doc;

namespace DOCPCL
{
class Program
{
static void Main(string[] args)
{
//load the sample document
Document doc = new Document();
doc.LoadFromFile("Sample.docx", FileFormat.Docx2010);

//save the document as a PCL file
doc.SaveToFile("Result.pcl", FileFormat.PCL);

 

}
}
}

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

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

aspose最新版合集

扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP