PDFBox: Add image to page


/ Published in: Java
Save to your folder(s)

Creates a new document with a single page and adds an image to it


Copy this code and paste it in your HTML
  1. /**
  2.  * @param args the command line arguments
  3.  * @throws java.io.IOException
  4.  */
  5. public static void main(String[] args) throws IOException {
  6. PDDocument document = new PDDocument();
  7. PDPage page = new PDPage(PDRectangle.A4);
  8.  
  9. document.addPage(page);
  10.  
  11. PDPageContentStream contentStream = new PDPageContentStream(document, page);
  12.  
  13. PDImageXObject pdImage = PDImageXObject.createFromFile("", document);
  14. contentStream.drawImage(pdImage, 0, 0);
  15.  
  16. contentStream.close();
  17.  
  18. document.save("");
  19. document.close();
  20. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.