1

I use this software in a .Net project, to convert HTML in PDF.

It work's great for me.

I want to produce files PDF in the format PDF/A-1b.

There's a way to accomplish this task?

Thank's in advance.

treep
  • 37
  • 2
  • 10

1 Answers1

3

You could use GhostScript to convert the PDF, that wkhtmltopdf gives you, to PDF/A.

Have a look at the following Stackoverflow question for inspiration:

Stackoverflow - how to use GS to convert PDF to PDF/A or PDF/X

Community
  • 1
  • 1
user1914292
  • 1,586
  • 13
  • 38
  • Yep, and here is .NET wrapper for Ghostscript library that he can use: https://ghostscriptnet.codeplex.com/ – HABJAN Oct 10 '13 at 10:49