更改PDF旋转文本上的字体

时间:2015-12-16 10:50:08

标签: java pdf itext

我使用iText在PDF上创建条形码的格式与此格式相同:

Barcode

问题是左边的数字,第一个零数字必须更小,而其余的数字也必须是粗体。 " T.T.C"也必须更小(它不必在另一条线上)。 我可以使用以下代码旋转数字:

String price = "23000 T.T.C.";
PdfContentByte cb = docWriter.getDirectContent();
PdfTemplate textTemplate = cb.createTemplate(50, 50);
ColumnText columnText = new ColumnText(textTemplate);
columnText.setSimpleColumn(0, 0, 50, 50);
columnText.addElement(new Paragraph(price));
columnText.go();
Image image;
image = Image.getInstance(textTemplate);
image.setAlignment(Image.MIDDLE);
image.setRotationDegrees(90);
doc.add(image);

问题是,当我在PDF上打印时,我无法在线找到改变String价格某些字符字体的方式。

1 个答案:

答案 0 :(得分:2)

我创建了一个小概念证明,其结果如下所示:

enter image description here

如您所见,它具有不同大小和样式的文本。它还有一个旋转的条形码。

看看RotatedText示例:

public void createPdf(String dest) throws IOException, DocumentException {
    // step 1
    Document document = new Document(new Rectangle(60, 120), 5, 5, 5, 5);
    // step 2
    PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream(dest));
    // step 3
    document.open();
    // step 4
    PdfContentByte canvas = writer.getDirectContent();

    Font big_bold = new Font(FontFamily.HELVETICA, 12, Font.BOLD);
    Font small_bold = new Font(FontFamily.HELVETICA, 6, Font.BOLD);
    Font regular = new Font(FontFamily.HELVETICA, 6);
    Paragraph p1 = new Paragraph();
    p1.add(new Chunk("23", big_bold));
    p1.add(new Chunk("000", small_bold));
    document.add(p1);

    Paragraph p2 = new Paragraph("T.T.C.", regular);
    p2.setAlignment(Element.ALIGN_RIGHT);
    document.add(p2);

    BarcodeEAN barcode = new BarcodeEAN();
    barcode.setCodeType(Barcode.EAN8);
    barcode.setCode("12345678");
    Rectangle rect = barcode.getBarcodeSize();
    PdfTemplate template = canvas.createTemplate(rect.getWidth(), rect.getHeight() + 10);
    ColumnText.showTextAligned(template, Element.ALIGN_LEFT,
            new Phrase("DARK GRAY", regular), 0, rect.getHeight() + 2, 0);
    barcode.placeBarcode(template, BaseColor.BLACK, BaseColor.BLACK);
    Image image = Image.getInstance(template);
    image.setRotationDegrees(90);
    document.add(image);

    Paragraph p3 = new Paragraph("SMALL", regular);
    p3.setAlignment(Element.ALIGN_CENTER);
    document.add(p3);

    // step 5
    document.close();
}

此示例解决了您的所有问题:

  • 您希望Paragraph使用不同的字体:使用不同的Paragraph对象撰写Chunk
  • 您想在条形码上添加额外的文字:将条形码添加到PdfTemplate并使用ColumnText.showTextAligned()添加额外的文字(不是您还可以撰写Phrase如果在额外文本中需要多个字体,请使用不同的Chunk个对象。
  • 您想要旋转条形码:将PdfTemplate包裹在Image对象内并旋转图像。

您可以查看结果:rotated_text.pdf

我希望这会有所帮助。