使用iText如何更改新行之间的距离?

时间:2018-12-19 12:51:42

标签: java kotlin itext

我正在弄乱itext,并且改变了字体大小,结果我的pdf中出现了一些奇怪的空格文本:

enter image description here

我想变成这样的东西:(不好意思的图像编辑)

enter image description here

这是我用来输入文本的代码:

private fun setBaseInfo(info: ArrayList<String>): PdfPCell
{
    val cell = PdfPCell()

    val glue = Chunk(VerticalPositionMark())
    val p = Paragraph()
    p.font.size = 8.0f

    for (str in info)
    {
        p.add(glue)
        p.add(str)
        p.add("\n")
    }

    cell.border = Rectangle.NO_BORDER
    cell.addElement(p)

    return cell
}

这是我提供的信息:

private fun foo(): ArrayList<String>
{
    val array = ArrayList<String>()
    array.add("Hi")
    array.add("StackOverflow")
    array.add("I'd Like")
    array.add("This")
    array.add("text")
    array.add("to be closer")
    array.add("together!")
    return array
} 

删除p.add("\n")时,输出为: enter image description here

1 个答案:

答案 0 :(得分:4)

全面披露:此处是iText的前雇员

这就是我要做的:

public static void main(String[] args) throws IOException {

    // create a temp file to hold the output
    File outputFile = File.createTempFile("stackoverflow",".pdf");

    PdfDocument pdfDocument =  new PdfDocument(new PdfWriter(outputFile));
    Document layoutDocument = new Document(pdfDocument);

    String[] lines = {"Hi","StackOverflow","I'd like","this","text","to","be","closer","together!"};
    for(String line : lines){
        layoutDocument.add(new Paragraph(line)
                .setMultipliedLeading(0.5f));   // this is where the magic happens
    }

    layoutDocument.close();
    pdfDocument.close();

    // display the temp file with the default PDF viewer
    Desktop.getDesktop().open(outputFile);
}

我做了几件事:

  • 尽可能使用最新版本的iText。您想从几年的错误修正和更新的体系结构中受益。
  • 请勿使用表格解决布局问题。
  • 对段落对象使用前导(MultipleedLeading或FixedLeading)来解决您的问题。