I'm working on loading a pdf from the database.
I have the data as a byte array, and I want to get that into a PdfDocument object.
How can I accomplish this? It seems like the LoadFromStream() method isn't around, at least it doesn't come up in my intellisense (because using free version?). Nonetheless, it is referenced in this documentation: e-iceblue.com/Tutorials/Spire.PDF/Spire.PDF-Program-Guide/Document-Operation/Save-PDF-file-to-Stream-and-Load-PDF-file-from-Stream-in-C-.NET.html. Additionally, the bottom of the page at that link says there is a direct way to do this with a byte array, but then just links to the general documentation, so I don't know where to find it.
So, in summary, how can I make a PdfDocument object using a byte array of data?
Thanks in advance.