I want to load a previously saved pdf file from disk into an Aspose.pdf object and then stream it to the browser.
At the moment the only way I found to load the object was to use the pdf(filestream) overloaded constructor. (Is this the only way to do this)?
However upon trying to call the 'save' method as I normally do to stream to the httpresponse, I get a runtime error about using the close method instead.
Should I be doing something else, like converting to a byte array and streaming? How would I accomplish this from the object?
Thanks.