如何强制文本显示在标题下方?

时间:2012-06-27 09:56:10

标签: java pdf itext

如何避免文档文本和标题重叠?

enter image description here

1 个答案:

答案 0 :(得分:1)

您必须为文档设置边距,以便考虑标题使用的空间。看看这个example。特别是,您对此Document constructor感兴趣:

Document doc = new Document(Rectangle pageSize,
    float marginLeft,
    float marginRight,
    float marginTop,        // <-- you want to play with this paramater
    float marginBottom)