gpt4 book ai didi

java - PDFDomTree 在将 pdf 文件转换为 html 时未检测到空格

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:46:58 25 4
gpt4 key购买 nike

我在我的 java 应用程序中使用 PDFDomTree 和 pdfbox-2.0.9 将 pdf 文件转换为 html 文件。下面是我用来转换 pdf 的代码。

try {   
PDDocument document = PDDocument.load(new File("some path"));
PDFDomTree parser = new PDFDomTree(PDFDomTreeConfig.createDefaultConfig());
Writer output = new PrintWriter(new File("some output path"), "utf-8");

parser.writeText(document, output);
output.close();
document.close();
} catch (IOException | ParserConfigurationException e) {
throw e;
}

现在我的问题是当我尝试分析输出 html 时,我意识到转换器无法检测到两个单词之间的空格,因此我将一些单词连接起来。

检查下面的比较: enter image description here

相应的 pdf 文件可以从 here 访问如果需要的话。

谁能帮我解决这个问题?

最佳答案

手边的文本提取器,Pdf2Dom 的 PDFDomTree , 基于 PDFBox' PDFTextStripper但仅使用它来将 PDF 绘图指令解析为具有样式和位置的字符,而它自己对这些丰富的字符进行所有分析。

特别是它会忽略其 PDFBoxTree 中所有传入的空白字符父类:

protected void processTextPosition(TextPosition text)
{
if (text.isDiacritic())
{
lastDia = text;
}
else if (!text.getUnicode().trim().isEmpty())
{
[...process character...]
}
}

( org.fit.pdfdom.PDFBoxTree 覆盖 processTextPosition )

在那[...process character...]阻止它尝试通过硬编码距离识别单词间隙:

        //should we split the boxes?
boolean split = lastText == null || distx > 1.0f || distx < -6.0f || Math.abs(disty) > 1.0f
|| isReversed(getTextDirectionality(text)) != isReversed(getTextDirectionality(lastText));

(在上面的 [...process character...] block 内)

由于 PDF 中的文本开头很小(9pt 由 Pdf2Dom 确定)并且在许多行中设置得非常紧密,因此单词之间的间距通常小于 1.0以上假设 ( distx > 1.0f )。

在我看来这里有两个问题:

  • 删除空格意味着丢弃信息; (在某些情况下,这可能是有利的,我已经看到 PDF 的同一行绘制了两次,其中一个绘制字符串参数包含空格,而另一个包含可见字符;但这些是异常(exception)。)

  • 具有硬编码的距离限制 distx > 1.0f , distx < -6.0f等,即使字体大小(以及它们的间隙大小)可能有很大差异。

这些问题应该在代码中修复。 PDF 的两种可能解决方法,例如您的 demo.pdf:

选择不同的距离限制

真正的修复应该尝试使距离限制动态变化,这取决于字体大小,甚至可能是当前行中到当前位置的平均字符距离。 PDF 的一种变通方法是用较小的硬编码距离替换硬编码距离。

例如使用 .5f而不是 1.0f作为单词距离,即将上面的测试替换为

        //should we split the boxes?
boolean split = lastText == null || distx > .5f || distx < -6.0f || Math.abs(disty) > 1.0f

这会导致 Pdf2Dom 识别您文档中的单词间隙(或至少更多,我没有检查所有这些)。

将空格解释为拆分

您可以明确地将它们解释为单词间隙,而不是忽略空格,例如通过增强 processTextPosition像这样覆盖

protected void processTextPosition(TextPosition text)
{
if (text.isDiacritic())
{
lastDia = text;
}
else if (!text.getUnicode().trim().isEmpty())
{
[...process character...]
} else {
//!! process white spaces here
//finish current box (if any)
if (lastText != null)
{
finishBox();
}
//start a new box
curstyle = new BoxStyle(style);
lastText = null;
}
}

我没有深入分析代码,所以我只能称之为变通。要使其真正修复,您必须测试它的副作用并扩展它以查看空白的确切性质:除了正常空间之外还有其他空白字符,其中一些是零宽度的,一些是非-breaking 等。所有这些不同类型的空白都值得特殊处理。


PS:一样多PDFBoxTree成员是 protected (而不是私有(private)的),很容易应用第二种解决方法而无需修补 Pdf2Dom:

PDDocument document = PDDocument.load(SOURCE);

PDFDomTree parser = new PDFDomTree(PDFDomTreeConfig.createDefaultConfig()) {
@Override
protected void processTextPosition(TextPosition text) {
if (text.getUnicode().trim().isEmpty()) {
//finish current box (if any)
if (lastText != null)
{
finishBox();
}
//start a new box
curstyle = new BoxStyle(style);
lastText = null;
} else {
super.processTextPosition(text);
}
}
};
Writer output = new PrintWriter(TARGET, "utf-8");

parser.writeText(document, output);
output.close();

( ExtractText 测试 testDemoImproved )

关于java - PDFDomTree 在将 pdf 文件转换为 html 时未检测到空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51672080/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com