Dear Aspose Team,
I am using the below code to read text from a .seq file and trying to write the text to pdf. The pdfdocument is not saving to the memorystream it is taking so much memory.
var text = File.ReadAllText(“00F605756ED231EE2F7A36.seq”);
var section = pdfDocument.Sections.Add();
section.Paragraphs.Add(new Text(text));
var pdfMemoryStream = new MemoryStream();
pdfDocument.Save(pdfMemoryStream);
pdfMemoryStream.Flush();
pdfMemoryStream.Close();
Please download the .seq file from below location.
Thanks & Regards,
N.Murali Krishna.