Export Word to PDF docs compliant to PDF/A-1b via Aspose.Words

aspose_seo

Well-known member
Joined
Jan 21, 2007
Messages
294
Programming Experience
1-3
What’s new in this release?

Earlier, Aspose.Words for .NET version 6.3 supported glossary documents while loading or saving Office Open XML only. But the newer version 6.4 enables exporting Word documents to PDF compliant to PDF/A-1b and Aspose.Words team is also committed to support PDF/A-1a in the next few months as well.

Example: How to export Word to PDF docs compliant to PDF/A-1b?

Document doc = new Document(@"C:\TestRendering.doc");
PdfOptions options = new PdfOptions();
options.Compliance = PdfCompliance.PdfA1b;
doc.SaveToPdf(0, doc.PageCount, @"C:\TestRendering Out.pdf", options);

More about Aspose.Words for .NET

Aspose.Words is a word processing component that enables .NET applications to read, write, modify & convert Word documents without using MS Word. Other features include smart tags, document creation, content and formatting manipulation, mail merge abilities, reporting features, DrawingML and support of EPUB, OOXML, DOCX, DOC, WordML, ODT, HTML, XHTML, MHTML, TXT and PDF formats. It supports printing and rendering Word documents to images. Also use Aspose.Words to build applications with Mono.

- List of supported features when saving a document in OpenDocument (.odt) format using Aspose.Words..
- Converting the document in EPUB format using Aspose.Words.
- Screenshot of Aspose.Words used with Mono on Linux.
- Homepage of Aspose.Words for .NET.
- Download evaluation version of Aspose.Words for .NET.
- Online documentation of Aspose.Words for .NET.
- Demos of Aspose.Words for .NET.
- Post your technical questions/queries to Aspose.Words for .NET Forum.
- Receive notifications about latest news and supported features by subscribing to Aspose.Words for .NET blog.

Contact Information
Suite 119, 272 Victoria Avenue
Chatswood, NSW, 2067
Australia
Aspose - The .NET and Java component publisher
sales@aspose.com
Phone: 888.277.6734
Fax: 866.810.94651
 
Back
Top