Java tutorial
import java.io.FileOutputStream; import com.lowagie.text.Chunk; import com.lowagie.text.Document; import com.lowagie.text.Element; import com.lowagie.text.Font; import com.lowagie.text.Paragraph; import com.lowagie.text.Phrase; import com.lowagie.text.pdf.PdfWriter; public class MainClass { public static void main(String[] args) throws Exception { Document document = new Document(); PdfWriter.getInstance(document, new FileOutputStream("2.pdf")); document.open(); Chunk space = new Chunk("asdf"); Phrase phrase2 = new Phrase(new Chunk("asdf", new Font(Font.TIMES_ROMAN))); Paragraph paragraph = new Paragraph(); paragraph.add(space); paragraph.add(phrase2); paragraph.setIndentationLeft(20); paragraph.setAlignment(Element.ALIGN_JUSTIFIED); document.add(paragraph); document.close(); } }