如何设置basefont颜色?

时间:2015-03-12 19:33:40

标签: c# pdf itextsharp

我想改变我的基色。

我使用矩形来设置背景颜色,但我无法弄清楚如何让我的字体变成白色,因为我正在使用PdfContentByte对象。

我尝试使用Chunk设置字体颜色,但SetFontAndSize会覆盖它。

BaseFont bfTimes = BaseFont.CreateFont(BaseFont.TIMES_ROMAN, BaseFont.CP1252, false);

iTextSharp.text.Font titreProgFont = FontFactory.GetFont("Times", 12, BaseColor.WHITE);

string nomProgramme, codeProgramme;
nomProgramme = "PROGRAMMEUR ANALYSTE";
codeProgramme = "LEA.1A";

Chunk titreProgChunk = new Chunk(nomProgramme + " (" + codeProgramme + ")", titreProgFont);

PdfContentByte cb2 = writer.DirectContent;
cb2.SaveState();
cb2.SetColorFill(BaseColor.GRAY);
cb2.Rectangle(200, 200, 200, 200);
cb2.Fill();
cb2.RestoreState();
cb2.BeginText();
cb2.SetFontAndSize(bfTimes, 12);
cb2.ShowTextAligned(PdfContentByte.ALIGN_CENTER, titreProgChunk.ToString(), 200, 200, 0);
cb2.EndText();

1 个答案:

答案 0 :(得分:5)

使用其中一种填充颜色更改字体颜色,例如cb2.SetColorFill(BaseColor.WHITE);