I am saving an Aspose.Words document as a PDF bytes and later, reading the PDF's bytes into a MemoryStream so a new Aspose Document() object can be instantiated. However, when I instantiate the Document using the constructor that accepts a Stream, it instantiates the Document with three pages in the Document.Pages property, but all three pages are null.
//get bytes from file/ database location
using(var stream = new MemoryStream(bytes))
{
var document = new Document(stream, false);
}
How do we get the pages to not be null?