pubpub-zz
pubpub-zz
Hi @rogerbinns, I've never seen any feedback about this evolution request : do you see any technical problem with such a request ?
Hi @rogerbinns, Is it a good time to bring back this issue on the table ?
I did a quick analysis on the first page. with some debug traces I've analysed the following line starting with PLUMBING SYSTEM - FAUCETS, VALVES AND CONNECTED FIXTURES: looking at...
Reproduced! I did some analysis, and we can detect some object such as pages which are not expected. Still under analysis to identify which part of the code/parameters which is...
I think I've got it. when writing, a process to refer/adjust the objects in the write object. during this step, PyPDF2 parses through the pages to write and "collect" all...
Work in progress... The cloning is not so easy...🤔
@xilopaint A PR still draft is available. I did some test on [HowtoMakeAccessiblePDF.pdf](https://github.com/py-pdf/PyPDF2/files/9485252/HowtoMakeAccessiblePDF.pdf) and in this file, the point I've noticed that the problem was linked with /Annots that contains...
You should use PdfWriter (For the moment PdfMerger has not been modified yet): ``` import PyPDF2 r=PyPDF2.PdfReader("e:/HowtoMakeAccessiblePDF.pdf") w=PyPDF2.PdfWriter() for i in range(10): _=w.add_page(r.pages[i],("/Annots","/B")) # _= is not required if this...
As said, this is a first draft. We have now a solution where the objects can be modified in a proper manner. We need now to find the best encapsulation...
This issue is not yet closed😉