Open
Description
This isn't setting the font to courier anymore, it defaults to LiberationSans :
final Font font = new Font(Font.COURIER, fontsize, Font.NORMAL)
final PdfPCell c = new PdfPCell(new Phrase(myText, font));

This seems to fix it:
final Font font = fontFactoryImp.getFont("Courier", fontsize, 0);
final PdfPCell c = new PdfPCell(new Phrase(myText, font));
Can you please remove or update the broken Font constructor?