I'm working in C# with Spire.PDF. Specifically, my goal is to load binary PDF data from a database into a Spire.Pdf.PdfDocument
object.
According to this documentation, I should be able to use the LoadFromStream()
method or some unspecified method that takes a byte array (see bottom of page at link where there is a link but only to the general documentation). However, this method seems absent from the current NuGet package.
So, in summary, how can I make a Spire.Pdf.PdfDocument
object using a byte array of data? Thanks in advance.
Please comment if you know a better .NET library for converting PDFs to and from images.