Adding Paragraph to a Page : Paragraph « PDF RTF « Java






Adding Paragraph to a Page

Adding Paragraph to a Page
import java.io.FileOutputStream;
import java.io.IOException;

import com.lowagie.text.Document;
import com.lowagie.text.DocumentException;
import com.lowagie.text.PageSize;
import com.lowagie.text.Paragraph;
import com.lowagie.text.pdf.PdfWriter;

public class AddingParagraphToAPagePDF {
  public static void main(String[] args) {
    Document document = new Document();
    try {
      PdfWriter.getInstance(document, new FileOutputStream("AddingParagraphToAPagePDF.pdf"));
      document.open();
      document.add(new Paragraph("First Page."));
      document.setPageSize(PageSize.A3);
      document.newPage();
      document.add(new Paragraph("This PageSize is A3."));
    } catch (Exception e) {
      System.err.println(e.getMessage());
    }
    document.close();
  }
}

           
       








itext.zip( 1,748 k)

Related examples in the same category

1.Three ParagraphsThree Paragraphs
2.Adding List to Paragraph
3.Adding Chunk and Phrase to ParagraphAdding Chunk and Phrase to Paragraph
4.Long Paragraph in PDFLong Paragraph in PDF
5.Generates a simple 'Hello World' PDF fileGenerates a simple 'Hello World' PDF file
6.Adding Chunk to ParagraphAdding Chunk to Paragraph