Hi,
I am evaluating product and find everything looks fine after a conversion from rtf to pdf, but the footer appears to be missing from the pdf. The header and body display fine, but the footer doesnt come across.
Please find attached origional RTF and the PDF once converted.
Code used
Dim loadOptions As New Aspose.Words.LoadOptions
loadOptions.LoadFormat = Words.LoadFormat.Rtf
Dim Doc As New Aspose.Words.Document("C:\\REPORT MIXBAG.rtf", loadOptions)
Doc.ViewOptions.ViewType = Words.Settings.ViewType.Normal
Doc.UpdateTableLayout()
Doc.UpdatePageLayout()
Doc.UpdateFields()
Dim saveOptions As New Aspose.Words.Saving.PdfSaveOptions
saveOptions.Compliance = Words.Saving.PdfCompliance.PdfA1b
saveOptions.SaveFormat = Words.SaveFormat.Pdf
Doc.Save("C:\\REPORT MIXBAG 3.pdf", saveOptions)
Doc = Nothing
Dim loadOptions As New Aspose.Words.LoadOptions
loadOptions.LoadFormat = Words.LoadFormat.Rtf
Dim Doc As New Aspose.Words.Document("C:\\REPORT MIXBAG.rtf", loadOptions)
Doc.ViewOptions.ViewType = Words.Settings.ViewType.Normal
Doc.UpdateTableLayout()
Doc.UpdatePageLayout()
Doc.UpdateFields()
Dim saveOptions As New Aspose.Words.Saving.PdfSaveOptions
saveOptions.Compliance = Words.Saving.PdfCompliance.PdfA1b
saveOptions.SaveFormat = Words.SaveFormat.Pdf
Doc.Save("C:\\REPORT MIXBAG 3.pdf", saveOptions)
Doc = Nothing
Regards,
Matt