I have not been able to use Aspose.Words 8.0.0 to save any of my existing DOCX files to PDF.
I get this error:
InvalidOperationException was unhandled.
Cannot convert ‘260’.
Here’s the only code I used to test:
Document doc = new Document(filename);
string outFilename = Path.ChangeExtension(filename, ".pdf");
doc.SaveToPdf(outFilename);
Previous versions of Aspose.Words have worked.
Thanks,
Heath