我正在尝试在PDF中查找文本元素的位置。为此,我扩展了PDFTextStripper。我正在使用multi-page LaTeX-produced PDF进行测试。
public class TextFinder extends PDFTextStripper {
private static final Logger logger =
LoggerFactory.getLogger(TextFinder.class);
private PDRectangle mediaBox;
public static class CMProcessor extends OperatorProcessor {
@Override
public void process(PDFOperator operator, List<COSBase> arguments)
throws IOException {
if ("cm".equals(operator.getOperation())) {
logger.debug("CM operation");
}
}
}
private CMProcessor cmProcessor = new CMProcessor();
public TextFinder() throws IOException {
this.registerOperatorProcessor("cm", cmProcessor);
}
@Override
protected void startPage(PDPage page) throws IOException {
super.startPage(page);
mediaBox = page.findMediaBox();
logger.debug(String.format("MEDIA (%f,%f) (%f,%f)",
mediaBox.getLowerLeftX(), mediaBox.getLowerLeftY(),
mediaBox.getUpperRightX(), mediaBox.getUpperRightY()));
}
@Override
protected void writeString(String text, List<TextPosition> textPositions)
throws IOException {
for (TextPosition position : textPositions) {
float x = position.getXDirAdj();
float y = mediaBox.getHeight() - position.getYDirAdj();
logger.debug(String.format("(%f,%f) (%f,%f)", x, y,
x + position.getWidthDirAdj(), y + position.getHeightDir()));
}
super.writeString(text, textPositions);
}
}
我面临的问题是所有位置似乎都被转换为(0,0)是最左边最顶层文本元素的坐标:
MEDIA (0.000000,0.000000) (595.270020,841.890015)
(0.000000,0.000000) (11.486961,14.255401)
(11.486961,0.000000) (20.660002,14.255401)
(20.660002,0.000000) (36.733482,14.255401)
感谢mkl,问题是由自定义OperatorProcessor引起的。没有它它工作得很好。但我需要操作员处理器,因为我用它来查找图像。我仍然不太明白,为什么添加自定义处理器会影响PDFTextStripper的行为。
答案 0 :(得分:2)
为什么添加自定义处理器会影响PDFTextStripper的行为。
原因是您的添加
registerOperatorProcessor("cm", cmProcessor);
实际上替换现有的处理器。最初的一个对于确定页面上的正确位置很重要。
解决方案是连锁处理器。