cmyers009
cmyers009
I am using 1.23.4 On Thu, Apr 4, 2024 at 3:46 PM Julian Smith ***@***.***> wrote: > I cannot reproduce this with the current version, PyMuPDF-1.24.1. What > version of...
Ok, I'll check it out. On Fri, Apr 5, 2024 at 2:22 AM Julian Smith ***@***.***> wrote: > There have been quite a few improvements to memory handling since 1.23.4...
If you add a default timeout it may break existing code bases. For example, if I am using a GET request to download a 1 GB file then I would...
also encountered same issue today.
Can you share example of PDF file?
Bump - This is causing issues with systems which use numpy 2.0
When can we get this released? This is a bug which results in an infinite loop, which may completely break systems if there is a malformed pdf.
@pietermarsman Can you please look about merging in a patch to fix this bug into master soon. If a system encounters a pdf with circular streams then it results in...
I am having the same issue with a different pdf. text = extract_text(pdf_path, page_numbers=[page_num]) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\Users\{USER}\AppData\Local\Programs\Python\Python311\Lib\site-packages\pdfminer\high_level.py", line 184, in extract_text interpreter.process_page(page) File "C:\Users\{USER}\AppData\Local\Programs\Python\Python311\Lib\site-packages\pdfminer\pdfinterp.py", line 1211, in process_page self.device.end_page(page) File...
The issue appears to be due to not keeping track of visited objects in the do_Do function of pdfinterp.py This appears to fix the issue: # ------------------------------------------------------------------ #MODIFIED# # ------------------------------------------------------------------...