Convert documents directly to PDF/A

Our ZUGFeRD SDK now contains a new PDF Class with some very easy to use functions. For example Document2PDFA Conversion.

Once you installed the ZUGFeRD SDK you just need very few lines of code to convert docx, tif, bmp, jpg or PDF directly to PDF/A

dim InputDOC as string =”c:\doc\invoice.docx”

dim OutputPDFa as string =”c:\tmp\invoice.pdf”

‘please contact info@aloaha.com for your own evaluation key

Dim License as string=”RYCLN4JTUF2CF3OVUJUKZTAFIE”

If Aloaha_ZUGFeRD.PDF.DOC2PDFA(InputDOC, OutputPDFa, License) = True Then
          If System.IO.File.Exists(OutputPDFa) = True Then
                    System.Diagnostics.Process.Start(OutputPDFa)
          End If
End If