Fredrik Wallström

Results 3 comments of Fredrik Wallström

Maybe I'm missing something but it looks like this: https://github.com/py-pdf/PyPDF2/pull/1276 only fixes the `_extract_text` function. I'm still having issues with the `_merge_page` function and this call: `original_resources = cast(DictionaryObject, self[PG.RESOURCES].get_object())`...

>Which version of PyPDF2 are you using? 2.10.8

PDF: [108.pdf](https://github.com/py-pdf/PyPDF2/files/9572045/108.pdf) Stupid code example but the principle is the same: ``` reader = PdfReader() page_one = reader.pages[0] page_two = reader.pages[0] page_one.merge_page(page_two) ```