When creating a pdf with a section that has multiple columns, followed by another section which is not on a new page the Save call crashes.
var pdf = new Pdf();
var colSection = pdf.Sections.Add();
colSection.ColumnInfo.ColumnCount = 2;
colSection.Paragraphs.Add(new Text("test"));
var anotherSection = pdf.Sections.Add();
anotherSection.IsNewPage = false;
pdf.Save(new MemoryStream()); //System.ArgumentNullException : Value cannot be null. Parameter name: fontInfoProvider
Aspose.Pdf version 9.8.0.0
var pdf = new Pdf();
var colSection = pdf.Sections.Add();
colSection.ColumnInfo.ColumnCount = 2;
colSection.Paragraphs.Add(new Text("test"));
var anotherSection = pdf.Sections.Add();
anotherSection.IsNewPage = false;
pdf.Save(new MemoryStream()); //System.ArgumentNullException : Value cannot be null. Parameter name: fontInfoProvider
Aspose.Pdf version 9.8.0.0