Dear Aspose Team,
Hi Murali Krishna,
Thanks for using our API’s.
I have observed that you are using a legacy Aspose.Pdf.Generator approach to convert .seq file to PDF format and this approach is obsolete. We encourage our customers to try using new Document Object Model of Aspose.Pdf namespace. However during my testing with following code snippet, I have observed that an OutOfMemory exception is being generated when converting the file to PDF format. For the sake of correction, I have logged this problem as PDFNEWNET-39737 in our issue tracking system. We will further look into the details of this problem and will keep you updated on the status of correction. Please be patient and spare us little time. We are sorry for this inconvenience.
[C#]
var text = File.ReadAllText("c:/pdftest/00F605756ED231EE2F7A36.seq");
Aspose.Pdf.Document pdfDocument = new Aspose.Pdf.Document();
var section = pdfDocument.Pages.Add();
section.Paragraphs.Add(new TextFragment(text));
var pdfMemoryStream = new MemoryStream();
pdfDocument.Save(pdfMemoryStream);
pdfMemoryStream.Flush();
pdfMemoryStream.Close();