Top "Pdfbox" questions

The Apache PDFBox library is an open source Java tool for working with PDF documents.

How can I create fixed-width paragraphs with PDFbox?

I can insert simple text like this: document = new PDDocument(); page = new PDPage(PDPage.PAGE_SIZE_A4); document.addPage(page); …

html pdfbox paragraph
Add BufferedImage to PDFBox document

In my current project, I try to add a BufferedImage to a PDFBox document. More specificly, I use an image …

java jfreechart bufferedimage pdfbox
read text from a particular page using PDFBox

I know how to read text of an entire pdf file usinf PDFBox using PDFTextStripper.getText(PDDocument). I also have …

java pdfbox
Using PdfBox, how do I retrieve contents of PDDocument as a byte array?

I am currently using PdfBox as the driver for a pdf-file editor application. I need the contents of the PdfBox …

java pdfbox
Converting PDF to multipage tiff (Group 4)

I'm trying to convert PDFs as represented by the org.apache.pdfbox.pdmodel.PDDocument class and the icafe library (https://…

java pdf pdfbox tiff icafe
Generate Thumbnail of Pdf in Android

I want to generate the image(thumbnail) from pdf file just like done by WhatsApp as shown below I have …

android image pdf pdfbox
PDF-Form Text hidden unless clicked

In my application I have to fill a predefined PDF form with data from DB. We are using Java and …

java pdf pdf-generation pdfbox pdf-form
Java PDFBox setting custom font for a few fields in PDF Form

I am using Apache PDFBox to read a fillable PDF form and fill the fields based on some data. I …

java pdf fonts pdfbox pdf-form
remove encryption from pdf with pdfbox, like qpdf

With qpdf, you can simply remove restrictions/encryption from a pdf like so: qpdf --decrypt infile outfile I would like …

java pdf pdfbox
Pdf in Landscape using pdfBox

Currently I am working with PDFBox of Apache to generate pdf. It is working perfectly fine in portrait mode but …

java pdf pdf-generation pdfbox