1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
AP_Context ctx = new AP_Context();
AsciiParagraph ap = new AsciiParagraph(ctx);
ap.addText(new LoremIpsum().getWords(29));
System.out.println(ap.render(35));
ctx.setFormat(TextFormat.FIRST_LINE);
System.out.println(ap.render(35));
ctx.setFormat(TextFormat.HANGING);
System.out.println(ap.render(35));
ctx.setFormat(TextFormat.DROPCAP);
System.out.println(ap.render(35));
ctx.setFormat(TextFormat.DROPCAP_WITH_PADDING);
ctx.setDropCapLib(new FigletOldBanner_6L());
System.out.println(ap.render(35));
// ctx.setDropCapLib(new FigletOldBanner_6L());
// System.out.println(ap.render(35));