iText for Java
Importing the iText jars from the Central Maven Repository is the best way to install iText 7. These simple videos explain how to do this using different IDEs:
How to import iText 7 in Eclipse to create a Hello World PDF?
How to import iText 7 in Netbeans to create a Hello World ...
This is a very simple program to create a PDF using iText 7 / Java:
//Initialize writer
PdfWriter writer = new PdfWriter(dest);
//Initialize document
PdfDocument pdfDoc = new PdfDocument(writer);
Document doc = new Document(pdfDoc);
//Add paragraph to the document
doc.add(new Paragraph(&q...