我在 Document 对象中添加了块
Document document = new Document();
document.add(new Chunk("This is a text"));
document.add(new Chunk("This is another text"));
document.close();
我尝试使用setAlignment(Element.ALIGN_JUSTIFIED)方法,但它看起来只适用于段落。
我们如何在这里证明文档对象的合理性?
我在 Document 对象中添加了块
Document document = new Document();
document.add(new Chunk("This is a text"));
document.add(new Chunk("This is another text"));
document.close();
我尝试使用setAlignment(Element.ALIGN_JUSTIFIED)方法,但它看起来只适用于段落。
我们如何在这里证明文档对象的合理性?