如何使用itextsharp查找文本的背景颜色

时间:2013-11-04 05:52:28

标签: itextsharp

我能够使用itxtsharp(renderInfo.GetFillColor())找到文本的前景色,是否可以使用itextsharp.i.e找到文本的背景色。 PDF文件中的某些文本位于颜色框内,我需要跳过颜色框内的文本,是否可能。请就此提出建议。提前致谢。

//Used to get the foreground color of the text
BaseColor curColor = new BaseColor(0f, 0f, 0f);
 if (renderInfo.GetFillColor() != null)
  curColor = renderInfo.GetFillColor();

0 个答案:

没有答案