What replaces chunk in iText 7?

2019-06-18 04:59发布

问题:

Attempting to use iText 7 in java. Want to have part of a paragraph be bold. Apparently in earlier releases this was done by formatting "chunks" separately then adding them to the paragraph. Apparently "chunks" don't exist in iText 7. What is the procedure for iText 7?

回答1:

Text in com.itextpdf.layout.element is meant to be an alternative for Chunk.

To make a part of a paragraph bold, you would need a bold font to be specified for a piece of a text.

Paragraph p = new Paragraph();
p.add(new Text("this will be in bold").setFont(boldFont));

Alternatively, you can rely on iText to simulate bold for regular font, but this is not a preferred way.

p.add(new Text("bold will be simulated for regular font").setBold());

Please check out the jumpstart tutorial written by Bruno Lowagie.



标签: java itext7