Mega Code Archive

 
Categories / Java Tutorial / PDF
 

PdfWriter PageLayoutOneColumn

import java.io.FileOutputStream; 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 writer2 = PdfWriter.getInstance(document, new FileOutputStream("one_column.pdf"));     writer2.setViewerPreferences(PdfWriter.PageLayoutOneColumn);     document.open();     Paragraph hello = new Paragraph("(English:) hello, ");     document.add(new Paragraph("asdf"));     document.add(hello);     document.close();   } }