doc.setHeader(header);
doc.setFooter(footer);
doc.open();
Paragraph p = new Paragraph();
p.add(new RtfTableOfContents("UPDATE ME!"));
doc.add(p);
p = new Paragraph("", new RtfFont("Staccato222 BT"));
p.add(new Chunk("Hello! "));
p.add(new Chunk("How do you do?"));
doc.add(p);
p.setAlignment(LwgElement.ALIGN_RIGHT);
doc.add(p);
Anchor a = new Anchor("http://www.uni-klu.ac.at");
a.setReference("http://www.uni-klu.ac.at");
doc.add(a);
LwgImage img = LwgImage.getInstance("pngnow.png");
doc.add(new Chunk(img, 0, 0));
doc.add(new Annotation("Mark", "This works!"));
Chunk c = new Chunk("");
c.setNewPage();
doc.add(c);
List subList = new List(true, 40);
subList.add(new ListItem("Sub list 1"));
subList.add(new ListItem("Sub list 2"));
List list = new List(true, 20);
list.add(new ListItem("Test line 1"));
list
.add(new ListItem(
"Test line 2 - This is a really long test line to test that linebreaks are working the way they are supposed to work so a really really long line of drivel is required"));
list.add(subList);
list.add(new ListItem("Test line 3 - \t\u20ac\t 60,-"));
doc.add(list);
list = new List(false, 20);
list.add(new ListItem("Bullet"));
list.add(new ListItem("Another one"));
doc.add(list);
doc.newPage();
Chapter chapter = new Chapter(new Paragraph("This is a Chapter"), 1);
chapter.add(new Paragraph(
"This is some text that belongs to this chapter."));
chapter.add(new Paragraph("A second paragraph. What a surprise."));
Section section = chapter.addSection(new Paragraph(
"This is a subsection"));
section.add(new Paragraph("Text in the subsection."));
doc.add(chapter);
com.lowagie.text.rtf.field.RtfTOCEntry rtfTOC = new com.lowagie.text.rtf.field.RtfTOCEntry(
"Table Test");
doc.add(rtfTOC);
Table table = new Table(3);
table.setPadding(2);
table.setAlignment(LwgElement.ALIGN_LEFT);
table.setSpacing(2);
LwgCell emptyCell = new LwgCell("");
LwgCell cellLeft = new LwgCell("Left Alignment");
cellLeft.setHorizontalAlignment(LwgElement.ALIGN_LEFT);
LwgCell cellCenter = new LwgCell("Center Alignment");
cellCenter.setHorizontalAlignment(LwgElement.ALIGN_CENTER);
LwgCell cellRight = new LwgCell("Right Alignment");
cellRight.setHorizontalAlignment(LwgElement.ALIGN_RIGHT);
table.addCell(cellLeft);
table.addCell(cellCenter);
table.addCell(cellRight);
LwgCell cellSpanHoriz = new LwgCell("This Cell spans two columns");
cellSpanHoriz.setColspan(2);
table.addCell(cellSpanHoriz);
table.addCell(emptyCell);
LwgCell cellSpanVert = new LwgCell("This Cell spans two rows");
cellSpanVert.setRowspan(2);
table.addCell(emptyCell);
table.addCell(cellSpanVert);
table.addCell(emptyCell);
table.addCell(emptyCell);
table.addCell(emptyCell);
LwgCell cellSpanHorizVert = new LwgCell(
"This Cell spans both two columns and two rows");
cellSpanHorizVert.setColspan(2);
cellSpanHorizVert.setRowspan(2);
table.addCell(emptyCell);
table.addCell(cellSpanHorizVert);
table.addCell(emptyCell);
RtfCell cellDotted = new RtfCell("Dotted border");
cellDotted.setBorders(new RtfBorderGroup(LwgRectangle.BOX,
RtfBorder.BORDER_DOTTED, 1, new Color(0, 0, 0)));
RtfCell cellEmbossed = new RtfCell("Embossed border");
cellEmbossed.setBorders(new RtfBorderGroup(LwgRectangle.BOX,
RtfBorder.BORDER_EMBOSS, 1, new Color(0, 0, 0)));
RtfCell cellNoBorder = new RtfCell("No border");
cellNoBorder.setBorders(new RtfBorderGroup());
table.addCell(cellDotted);
table.addCell(cellEmbossed);
table.addCell(cellNoBorder);
doc.add(table);
for (int i = 0; i < 300; i++) {
doc.add(new Paragraph(
"Dummy line to get multi-page document. Line "
+ (i + 1)));
}
doc.close();