Hi there,
not sure if that is a bug or something with my local installation.
Either way I would like to understand the root of the issue.
I'm getting a FileNotFoundException if I use PDType1Font.HELVETICA_BOLD.
All I do is
PDPageContentStream contentStream;
contentStream.beginText(); PDFont font; font = PDType1Font.HELVETICA_BOLD;
contentStream.setFont(font, 10.0); contentStream.newLineAtOffset(60.0, 775.0);
contentStream.showText("Hello world!"); contentStream.endText();
Any clue what the issue might be?
Regards Valentin