I'm trying to convert a 'docx' file to 'pdf' and 'pdf-a' and this conversion doesn't work fine.
I'm using then next code:
Dim DocAspose As Aspose.Words.Document = New Aspose.Words.Document("C:\Notificacio_RESOLUCIO_Batlia.docx")
Dim oPdfSaveOptions As Aspose.Words.Saving.PdfSaveOptions
oPdfSaveOptions = New Aspose.Words.Saving.PdfSaveOptions
oPdfSaveOptions.SaveFormat = Aspose.Words.SaveFormat.Pdf
DocAspose.Save("C:\Notificacio_RESOLUCIO_Batlia.pdf", oPdfSaveOptions)
After conversion, the Notificacio_RESOLUCIO_Batlia.pdf perform incorrect. Have sections wrong structure.
There are any solution to my problem?
Thanks