使用FontSelector时更改字体颜色和大小

时间:2012-12-13 09:58:34

标签: itext font-size

我正在使用iText5(Java)来编写可能包含中文字符的PDF。所以我使用FontSelector来处理字符串,这很好。

现在的问题是,如果有2个字符串

String str1 = "Hello Test1";
String str2 = "Hello Test2";

我需要写str1女巫Font Color = Bluesize = 10,而str2Font Color = Graysize = 25

我无法弄清楚如何使用FontSelector实现此目的。

感谢任何帮助。

2 个答案:

答案 0 :(得分:8)

这很容易。这里有一个代码片段,用蓝色添加Times Roman文本,用红色添加中文文本:

FontSelector selector = new FontSelector();
Font f1 = FontFactory.getFont(FontFactory.TIMES_ROMAN, 12);
f1.setColor(BaseColor.BLUE);
Font f2 = FontFactory.getFont("MSung-Light",
        "UniCNS-UCS2-H", BaseFont.NOT_EMBEDDED);
f2.setColor(BaseColor.RED);
selector.addFont(f1);
selector.addFont(f2);
Phrase ph = selector.process(TEXT);

在您的情况下,您需要两个FontSelectors。

FontSelector selector1 = new FontSelector();
Font f1 = FontFactory.getFont(FontFactory.TIMES_ROMAN, 12);
f1.setColor(BaseColor.BLUE);
selector1.addFont(f1);
Phrase ph = selector1.process(str1);//First one

FontSelector selector2 = new FontSelector();
Font f2 = FontFactory.getFont(FontFactory.TIMES_ROMAN, 12);
f2.setColor(BaseColor.GRAY);
selector2.addFont(f2);
Phrase ph = selector2.process(str2);//Second one

答案 1 :(得分:0)

你可以用我的另一种方式做到这一点我使用14表示标题,10表示报表中的数据

    private Font fHeader;
    private Font f1;

    BaseFont bf = BaseFont.createFont(Constants.Settings.ARIAL_FONT, BaseFont.IDENTITY_H, true);

     f1 = new Font(bf, 10);
     fHeader= new Font(bf,14);
     PdfPCell cell = new PdfPCell();

//for report header
     cell = new PdfPCell(new Phrase(reportKingdomData + "\n" + departmentData + " " + username + " \n  " + reportHeader + "    \n ", fHeader));

//and for background color
 cell .setBackgroundColor(new GrayColor(0.40f));//if 0.10f will be closer to black