Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using pdfbox in java to overlay text onto previously created pdf document

Tags:

java

pdfbox

I already have several PDF documents that have been created. What I am attempting to do is by using PDFBox. I need to put text into several places on these created documents but I do NOT want to modify the text that is within those areas. For instance, there may be a a section as follows -

NAME: ______________________________

I will put text into that area, but I need the underline to remain the same length. I believe the best solution would be to just create a textbox or similar that goes above the area so the line remains the same length.

In other words, I do not want to edit the text inline so it will remain the same length. I have no code for this as I am just attempting to understand the pdfbox package. I have been looking for examples online, but most of them just show how to create a document and not how to update a previously document. How do I do this?

like image 386
Rabbit Guy Avatar asked Aug 24 '15 18:08

Rabbit Guy


2 Answers

I found the answer and wanted to share.

In the pdfbox package there is a class called Overlay.

    PDDocument pdfDocument = new Overlay();
    PDDocument final = pdfDocument.overlay(PDDocument firstDoc, PDDocument otherDoc);

firstDoc will be overlaid onto otherDoc. Easy peasy. I just didn't know where to look.

like image 126
Rabbit Guy Avatar answered Oct 06 '22 00:10

Rabbit Guy


In case you need concrete example of use, you can refer to OverlayPDF.java in the PDFBox reposity:

Overlay overlayer = new Overlay();
overlayer.setInputFile(inputFile);  //the file to be overlayed

PDDocument result = overlayer.overlay(overlayFile); //This will add overlays to a documents.
result.save(outputFilename);
result.close();
overlayer.close();  //close the input files AFTER saving the resulting file
like image 36
Leszek Jasek Avatar answered Oct 06 '22 00:10

Leszek Jasek