我可以使用 itxtsharp (renderInfo.GetFillColor()) 找到文本的前景色,是否可以使用 itextsharp.ie 找到文本的背景色 PDF 文件中的一些文本在颜色框内,我需要跳过颜色框中存在的文本,是否可能。请就此提出建议。提前致谢。
//Used to get the foreground color of the text
BaseColor curColor = new BaseColor(0f, 0f, 0f);
if (renderInfo.GetFillColor() != null)
curColor = renderInfo.GetFillColor();