1

我无法在 iText 中使用 PdfContentByte 设置下划线和上划线。我想为 sectionArea == 1 || 中的所有字段设置下划线 部分 Area == 3,如 getFontForFormat 中所述。到目前为止,我只能做大胆的风格,我也需要加下划线和上划线。这是代码:

public void doOutputField(Field field) {
    String fieldAsString = field.toString();
    BaseFont baseFont = getFontForFormat(field);
    float fontSize = 11;

    Point bottomLeft = bottomLeftOfField(field, 11, baseFont);

    int align;

    align = PdfContentByte.ALIGN_LEFT;

    //PdfContentByte content
    content.beginText();
    content.setFontAndSize(baseFont, fontSize);

    content.setColorFill(Color.BLACK);

    double lineHeight = field.getOutputHeight();

    content.showTextAligned(align, fieldAsString, (float) bottomLeft.x,
                (float) bottomLeft.y, 0f);

    bottomLeft.y -= lineHeight;

    content.endText();
}

public BaseFont getFontForFormat(Field field) {

    try {
        if (field.getSection().getArea().getArea() == 1
                || field.getSection().getArea().getArea() == 3) {
            BaseFont bf = BaseFont.createFont(BaseFont.TIMES_BOLD,
                    BaseFont.CP1252, BaseFont.NOT_EMBEDDED);
            return bf;
        } else {
            BaseFont bf = BaseFont.createFont("Times-Roman",
                    BaseFont.CP1252, BaseFont.NOT_EMBEDDED);
            return bf;
        }
    } catch (Exception e) {
    }
    return null;
}

提前致谢

编辑(由 Bruno Lowagie 解决):

这个问题可以通过使用 ColumnText 来解决。

  if (field.getSection().getArea().getArea() == 1
            || field.getSection().getArea().getArea() == 3) {

        Chunk chunk = new Chunk(fieldAsString);
        chunk.setUnderline(+1f, -2f);

        if (field.getSection().getArea().getArea() == 3) {
            chunk.setUnderline(+1f, (float) field.getBoundHeight());
        }

          Font font = new Font();
          font.setFamily("Times Roman");
          font.setStyle(Font.BOLD);
          font.setSize((float) 11);
          chunk.setFont(font);

          Paragraph p = new Paragraph();
          p.add(chunk);

         ColumnText ct = new ColumnText(content);
         ct.setSimpleColumn(p, (float)bottomLeft.x, (float)bottomLeft.y,
             (float)field.getBoundWidth() + (float)bottomLeft.x,
             (float)field.getBoundHeight() + (float)bottomLeft.y,
             (float)lineHeight, align);
             try {
             ct.go();
             } catch (DocumentException e) {
             // TODO Auto-generated catch block
             e.printStackTrace();
             }
    }

谢谢

4

1 回答 1

3

使用PdfContentByte.showTextAligned(). 你有什么不想使用的理由ColumnText吗?

使用PdfContentByte,您必须处理文本状态 -<code>beginText() 和endText()-、字体 -<code>setFontAndSize()-,并且您只能添加String值。如果要添加线条(例如下划线),则需要moveTo(), lineTo(),stroke()操作。这些运算符需要坐标,因此您需要BaseFont结合使用String和字体大小来测量线条的大小。涉及到一些数学。

如果您使用ColumnText,您可以选择使用 一次添加一行ColumnText.showTextAligned()。或者您可以使用定义一列setSimpleColumn()并让 iText 负责将文本分布在不同的行上。在这两种情况下,您都不必担心处理文本状态,也不必担心字体和大小。ColumnText接受Phrase对象,这些对象由Chunk您可以为其定义下划线和上划线值的对象组成。在这种情况下,iText 会为您完成所有数学运算。

于 2012-11-03T08:53:49.927 回答