【发布时间】:2022-01-03 15:52:21
【问题描述】:
我已经从Github 安装了 diff-pdf-visually 工具,我正在 Visual Studio Code 中使用它。
我用 python 为 2 个 PDF 运行了它:
from diff_pdf_visually import pdfdiff
pdfdiff("compareA.pdf", "compareB.pdf")
然后,我得到这个结果:
Converting each page of the PDFs to an image...
PDFs have the same number of pages. Checking each pair of converted images...
Min sig = 15.2909, significant?=True. The PDFs are different. The most different pages are: page 1 (sgf. 15.2909).
False
但是,我无法找到包含视觉差异的文件。在 Github 页面上,提到有“临时文件”,其中包含每页差异的 PNG 图像。
如何找到具有视觉差异的文件以便使用它?
【问题讨论】: