I'm trying to convert a 'docx' file with an image at the header to 'pdf' and the result of the conversion is a pdf file with no image.
I'm using then next code.
Dim DocAspose As Aspose.Words.Document = New Aspose.Words.Document("C:\Doc.docx")
Dim oPdfSaveOptions As Aspose.Words.Saving.PdfSaveOptions
oPdfSaveOptions = New Aspose.Words.Saving.PdfSaveOptions
oPdfSaveOptions.SaveFormat = Aspose.Words.SaveFormat.Pdf
DocAspose.Save("C:\Doc.pdf", oPdfSaveOptions)
There are any solution to my problem?
Thanks.