我能够使用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();