FDF from stream?

I know using iTextSharp I can easily create an FDF from a stream in asp.net (sorry for the formatting):

try
{
HttpRequest pdfRequest = Request;
System.IO.Stream istream = Request.InputStream;

FdfReader fdf = new FdfReader(istream);

}

Is there a similar way using ASPOSE.PDF?? I would rather not have to save to a file first before working with the FDF data.

Thanks in advance for any help or assistance!

Hi Matthew,


Thanks for your interest in our API’s.

We have a class named Aspose.Pdf.Document which has an overloaded constructor to load existing PDF files from Stream object.

Aspose.Pdf.Document doc = new Aspose.Pdf.Document(new MemoryStream());<o:p></o:p>