pdfbox icon indicating copy to clipboard operation
pdfbox copied to clipboard

Mirror of Apache PDFBox

Results 48 pdfbox issues
Sort by recently updated
recently updated
newest added

i'm insert a picture into my template.pdf `PDImageXObject image = PDImageXObject.createFromFile(“C:/tmp/db20dacea96841098d8b34635c8aec1e.jpg”, document); PDPageContentStream contentStream = new PDPageContentStream(document, document.getPage(0), PDPageContentStream.AppendMode.APPEND, true); contentStream.drawImage(image, x , y,width, height); ` `javax.imageio.IIOException: JFIF APP0 must...

Based on https://github.com/danfickle/pdfbox See examples/src/main/java/org/apache/pdfbox/examples/pdmodel/AdvancedTextLayoutSequencesDin91379.java Glyph layout looks good with NotoSans-Regular. Combinations with two diacritics work after reordering glyphs, using the patch for FOP-2969 and setting gdef in GlyphPositioningTable. Output...

Refactored the code to address certain code smells in a small subsection of the code. The following refactoring was applied to various files/methods/fields. - [Extract Method](https://github.com/apache/pdfbox/commit/bcb2922bed8d61ffa3f358b29989daa9df3f06a0) - [Rename field/variable/method](https://github.com/apache/pdfbox/commit/9d83b938807c5dec6fcd9a9d9d65b8afa835665d) -...

Finalizers (method finalize()) are going to be deprecated for removal with JDK 18. See https://openjdk.java.net/jeps/421 for details. The best way to replace the finalize() methods is by using the JDK...

see "Guidance on heap space error when printing document" discussion on user listserv

Allow xmp extension schemata to be defined and used within the same description. See [PDFBOX-5292](https://issues.apache.org/jira/browse/PDFBOX-5292)

### Jira - [PDFBOX-5284](https://issues.apache.org/jira/browse/PDFBOX-5284) ### Description #### Replace test class [PDFTabulaTextStripper](https://github.com/apache/pdfbox/blob/588cb208653262ada43732a4e61c6fa3158f45f4/pdfbox/src/test/java/org/apache/pdfbox/text/TestTextStripper.java#L619) by spying object and improve test design ##### Motivation * Decouple test class `PDFTabulaTextStripper` from production class `PDFTextStripper`. *...

Please see [https://issues.apache.org/jira/browse/PDFBOX-5068 ](https://issues.apache.org/jira/browse/PDFBOX-5068 ) and the comments below. Thank you very much in advance.