ImageAlignmentPDF.java Source code

Java tutorial

Introduction

Here is the source code for ImageAlignmentPDF.java

Source

import java.io.FileOutputStream;

import com.lowagie.text.Document;
import com.lowagie.text.Image;
import com.lowagie.text.pdf.PdfWriter;

public class ImageAlignmentPDF {

    public static void main(String[] args) {

        Document document = new Document();
        try {
            PdfWriter.getInstance(document, new FileOutputStream("ImageAlignmentPDF.pdf"));
            document.open();

            Image imageRight = Image.getInstance("logo.png");
            imageRight.setAlignment(Image.RIGHT);

            Image imageCenter = Image.getInstance("logo.png");
            imageCenter.setAlignment(Image.MIDDLE);

            Image imageLeft = Image.getInstance("logo.png");
            imageLeft.setAlignment(Image.LEFT);

            document.add(imageRight);
            document.add(imageCenter);
            document.add(imageLeft);
        } catch (Exception e) {
            System.err.println(e.getMessage());
        }
        document.close();
    }
}