PostScript is a page description language that is an industry standard for outputting high-resolution text and graphics. From Version 6.11.2, Spire.Doc supports to convert doc/docx to a postscript file in both WinForm app and ASP.NET app. This article will demonstrate how to convert word to PostScript in C# and VB.NET.
Firstly, view the sample word document:
[C#]
using Spire.Doc; namespace Word { class Program { static void Main(string[] args) { Document doc = new Document(); doc.LoadFromFile("Sample.docx", FileFormat.Docx2010); doc.SaveToFile("Result.ps", FileFormat.PostScript); } } }
[VB.NET]
Imports Spire.Doc Namespace Word Class Program Private Shared Sub Main(ByVal args As String()) Dim doc As Document = New Document() doc.LoadFromFile("Sample.docx", FileFormat.Docx2010) doc.SaveToFile("Result.ps", FileFormat.PostScript) End Sub End Class End Namespace
Effective screenshot of the resulted PostScript file converted from .docx document: