Output to console with PdfWriter : PDF Writer « PDF « Java Tutorial






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

public class MainClass {

  public static void main(String[] args) throws Exception {
    Document document = new Document();
    PdfWriter.getInstance(document, System.out);
    document.open();
    document.add(new Paragraph("Hello World"));
    document.close();
  }
}








29.5.PDF Writer
29.5.1.PdfWriter.AllowCopy | PdfWriter.AllowPrinting
29.5.2.Set Userunit
29.5.3.Output to console with PdfWriter
29.5.4.Generates a PDF file (version 1.6) with the text 'Hello World'
29.5.5.PdfWriter.NO_SPACE_CHAR_RATIO
29.5.6.Pause and resume a writer
29.5.7.Add page event listener to PDF writer