Skip to content
Snippets Groups Projects
Unverified Commit 39f1feac authored by 加帆's avatar 加帆 Committed by GitHub
Browse files

Bug fix pdf parse index out of range (#440)

### What problem does this PR solve?

fix a bug comes when parse some pdf file #436 

### Type of change

- [:ballot_box_with_check: ] Bug Fix (non-breaking change which fixes an issue)
parent 1dada69d
No related branches found
No related tags found
No related merge requests found
......@@ -830,10 +830,13 @@ class HuParser:
pn = [bx["page_number"]]
top = bx["top"] - self.page_cum_height[pn[0] - 1]
bott = bx["bottom"] - self.page_cum_height[pn[0] - 1]
if pn[-1] - 1 >= len(self.page_images): return ""
page_images_cnt = len(self.page_images)
if pn[-1] - 1 >= page_images_cnt: return ""
while bott * ZM > self.page_images[pn[-1] - 1].size[1]:
bott -= self.page_images[pn[-1] - 1].size[1] / ZM
pn.append(pn[-1] + 1)
if pn[-1] - 1 >= page_images_cnt:
return ""
return "@@{}\t{:.1f}\t{:.1f}\t{:.1f}\t{:.1f}##" \
.format("-".join([str(p) for p in pn]),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment