/**
* Creates a PDF document with a certain pagesize
*/ public class SettingPageSizeLEGALNOTE { public static void main(String[] args) {
Document document = new Document(); try {
PdfWriter.getInstance(document, new FileOutputStream("SettingPageSizeLEGALNOTE.pdf"));
document.open();
document.add(new Paragraph("First Page."));
document.setPageSize(PageSize.LEGAL);
document.newPage();
document.add(new Paragraph("This PageSize is LEGAL."));
document.setPageSize(PageSize.NOTE);
document.newPage();
document.add(new Paragraph("This PageSize is NOTE."));