Example usage for com.itextpdf.text.pdf PdfTemplate setTextMatrix

List of usage examples for com.itextpdf.text.pdf PdfTemplate setTextMatrix

Introduction

In this page you can find the example usage for com.itextpdf.text.pdf PdfTemplate setTextMatrix.

Prototype

public void setTextMatrix(final float x, final float y) 

Source Link

Document

Changes the text matrix.

Usage

From source file:com.masscustsoft.service.ToPdf.java

License:Open Source License

@Override
public void onCloseDocument(PdfWriter writer, Document document) {
    PdfTemplate tpl = getPgTpl();
    tpl.beginText();/*from  w  w w .ja v  a 2 s  .  co  m*/
    tpl.setFontAndSize(getDefaultFont(), 12);
    tpl.setTextMatrix(0, 0);
    tpl.showText(Integer.toString(writer.getPageNumber() - 1));
    tpl.endText();
}