To create PDF file we need iText 5 jar. Download iText Jars from iText Website or Maven Repository
MultipleImagesInTable.java
Output
Reference : iText Website
Maven Dependency
com.itextpdf itextpdf 5.5.11
MultipleImagesInTable.java
package com.javatutorialcorner.itextpdf;
import com.itextpdf.text.Document;
import com.itextpdf.text.DocumentException;
import com.itextpdf.text.Image;
import com.itextpdf.text.pdf.PdfPTable;
import com.itextpdf.text.pdf.PdfWriter;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
public class MultipleImagesInTable {
public static final String DEST = "C:/JTC/MultipleImagesInTable.pdf";
public static final String IMG1 = "C:/JTC/brasil.png";
public static final String IMG2 = "C:/JTC/dog.bmp";
public static final String IMG3 = "C:/JTC/fox.bmp";
public static void main(String[] args) throws IOException,
DocumentException {
File file = new File(DEST);
file.getParentFile().mkdirs();
new MultipleImagesInTable().createPdf(DEST);
}
public void createPdf(String dest) throws IOException, DocumentException {
Image img1 = Image.getInstance(IMG1);
Image img2 = Image.getInstance(IMG2);
Image img3 = Image.getInstance(IMG3);
Document document = new Document();
PdfWriter.getInstance(document, new FileOutputStream(dest));
document.open();
PdfPTable table = new PdfPTable(1);
table.setWidthPercentage(20);
table.addCell(img1);
table.addCell("Brazil");
table.addCell(img2);
table.addCell("Dog");
table.addCell(img3);
table.addCell("Fox");
document.add(table);
document.close();
}
}
Output
Reference : iText Website




0 comments:
Post a Comment