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");
Paragraph paragraph = new Paragraph();
paragraph.add(space);
paragraph.setAlignment(Element.ALIGN_JUSTIFIED);
document.add(paragraph);
document.close();
}
}
|