如何获取特定选定区域的PDF坐标?
How to get PDF coordinates of specific selected area?
我的任务是比较我使用以下库的两个 pdf:
https://github.com/red6/pdfcompare
问题是,我必须忽略 pdf 的某些部分,为此我需要坐标。如何获取文档中提到的坐标?我已经研究过,但所有使用的工具都只显示 x 和 y 坐标,我在这里需要 4 个维度。
exclusions: [
{
page: 2
x1: 300 // entries without a unit are in pixels. Pdfs are rendered by default at 300DPI
y1: 1000
x2: 550
y2: 1300
},
{
// page is optional. When not given, the exclusion applies to all pages.
x1: 130.5mm // entries can also be given in units of cm, mm or pt (DTP-Point defined as 1/72 Inches)
y1: 3.3cm
x2: 190mm
y2: 3.7cm
},
{
page: 7
// coordinates are optional. When not given, the whole page is excluded.
}
]
我想忽略 PDF 中的以下内容
谢谢。
感谢@Olivier 对我的指导。我用GIMP载入PDF,选中我要忽略的区域的左上角,复制位置。我对右下角做了同样的事情。然后我将右上角粘贴到 x1 和 y1,将右下角粘贴到 x2 和 y2。现在,它按预期工作。谢谢大家
所附的屏幕截图显示了我所做的。
upper-left
lower-right
我的任务是比较我使用以下库的两个 pdf:
https://github.com/red6/pdfcompare
问题是,我必须忽略 pdf 的某些部分,为此我需要坐标。如何获取文档中提到的坐标?我已经研究过,但所有使用的工具都只显示 x 和 y 坐标,我在这里需要 4 个维度。
exclusions: [
{
page: 2
x1: 300 // entries without a unit are in pixels. Pdfs are rendered by default at 300DPI
y1: 1000
x2: 550
y2: 1300
},
{
// page is optional. When not given, the exclusion applies to all pages.
x1: 130.5mm // entries can also be given in units of cm, mm or pt (DTP-Point defined as 1/72 Inches)
y1: 3.3cm
x2: 190mm
y2: 3.7cm
},
{
page: 7
// coordinates are optional. When not given, the whole page is excluded.
}
]
我想忽略 PDF 中的以下内容
谢谢。
感谢@Olivier 对我的指导。我用GIMP载入PDF,选中我要忽略的区域的左上角,复制位置。我对右下角做了同样的事情。然后我将右上角粘贴到 x1 和 y1,将右下角粘贴到 x2 和 y2。现在,它按预期工作。谢谢大家
所附的屏幕截图显示了我所做的。
upper-left lower-right