You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please remove the clipping for full page images in PDF. Currently it's clipping in get_page_output:
# ignore full page graphics
page_clip = page.rect + (36, 36, -36, -36)
paths = [
p
for p in page.get_drawings()
if not intersects_rects(p["rect"], tab_rects0)
and p["rect"] in page_clip
and p["rect"].width < page_clip.width
and p["rect"].height < page_clip.height
]
This is problematic for pdf with full page images.
Change to the following:
paths = [
p
for p in page.get_drawings()
if not intersects_rects(p["rect"], tab_rects0)
]
The text was updated successfully, but these errors were encountered:
Please remove the clipping for full page images in PDF. Currently it's clipping in get_page_output:
This is problematic for pdf with full page images.
Change to the following:
The text was updated successfully, but these errors were encountered: