Thank you Alexy for the quick response , I will include the FontSubstitution .
Now , I am trying to get the page count for CSV using sheet renderer page count , its always returning zero for me and no exceptions
Sample-Spreadsheet-5000-rows.csv.zip (154.9 KB)
Workbook book = new Workbook(filePath);
ImageOrPrintOptions imgOptions = new ImageOrPrintOptions();
// Default 0 Prints all pages.
// IgnoreBlank 1 Don't print the pages which the cells are blank.
// IgnoreStyle 2 Don't print the pages which cells only contain styles.
imgOptions.setPrintingPage(2);
SheetRender sr = new SheetRender(sheet, imgOptions);
nt sheetPageCount = sr.getPageCount();