Categories:
Audio (13)
Biotech (29)
Bytecode (35)
Database (77)
Framework (7)
Game (7)
General (512)
Graphics (53)
I/O (32)
IDE (2)
JAR Tools (86)
JavaBeans (16)
JDBC (89)
JDK (337)
JSP (20)
Logging (103)
Mail (54)
Messaging (8)
Network (71)
PDF (94)
Report (7)
Scripting (83)
Security (32)
Server (119)
Servlet (17)
SOAP (24)
Testing (50)
Web (19)
XML (301)
Other Resources:
Embed Image in PDF with iText
How to embed images in PDF using iText Java Library?
✍: FYIcenter.com
Here is a tutorial for creating a PDF document with an embedded image
using iText Java Library.
1. Create a Java file, EmbeddedImage.java:
/** * An image embedded in text in PDF with iText */ import com.itextpdf.kernel.pdf.*; import com.itextpdf.layout.*; import com.itextpdf.layout.element.*; import com.itextpdf.io.image.*; import java.io.*; public class EmbeddedImage { public static void main(String args[]) throws IOException { PdfWriter writer = new PdfWriter("image.pdf"); PdfDocument pdf = new PdfDocument(writer); Document document = new Document(pdf); Image fox = new Image(ImageDataFactory.create("fox.bmp")); Paragraph p = new Paragraph("The quick brown ") .add(fox) .add(" jumps over the lazy dog."); document.add(p); document.close(); } }
2. Run the Java program iText 7 Java Library.
fyicenter$ java -cp java -cp kernel-7.1.4.jar:layout-7.1.4.jar: \ io-7.1.4.jar:slf4j-api-1.7.31.jar \ EmbeddedImage.java fyicenter$ ls -l *.pdf 11683 image.pdf
3. View the new PDF, image.pdf, in a browser. You see a PDF page with an embedded image.
Â
⇒ Draw Shape in PDF with iText
⇠Bullet List in PDF with iText
⇑ Using iText Library in Java Programs
⇑⇑ iText for PDF Generation
2021-11-13, 372👍, 0💬
Popular Posts:
Saxon-HE (home edition) is an open source product available under the Mozilla Public License. It pro...
JDOM provides a solution for using XML from Java that is as simple as Java itself. There is no compe...
If you are a Java developer, it is very often that you need to use some 3rd party libraries to perfo...
Jaxen, Release 1.1.1, is an open source XPath library written in Java. It is adaptable to many diffe...
What is the sax\Writer.java provided in the Apache Xerces package? I have Apache Xerces 2.11.0 insta...