文档彩票走势图>>E-iceblue中文文档>>将 Word 转换为 PCL
将 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 中。
以下将直接展示代码:
[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产品
如需获取更多产品相关信息请咨询