m-holger
m-holger
In ```rust let y = match (n,m) { // which is inside of a => arm. First, we match tuple (n,m) (0,0) => "ok", // this leg matches any tuple...
Experimental rewrite of exporter.export - preserve internal links of main file (i.e. pdfqueue[0]) - preserve table of content/bookmarks of main file - preserve form fields of main file Definitely requires...
Drag&drop between two instances of PDF Arranger behaves like cut&paste. This feels wrong and appears inconsistent with other applications such as a file manager: #### Case 1 - the two...
Deleting pages using, for example, ``` python pdf = Pdf.open('./pikepdf-readthedocs-io-en-latest.pdf') del(pdf.pages[1:]) pdf.save('./out.pdf') ``` does not remove them (or their contents) from the output file. The problem appears to be that...
I am looking for a way to swap pages to give the following result ``` python print([p.objgen for p in pdf.pages]) [(1, 0), (4, 0), (7, 0), (10, 0)] #...
## Version of Dear PyGui Version: 0.6.415 Operating System: Mint 20.1 Cinnamon ## My Issue/Question In node_editor, if 2 nodes with buttons are stacked on top of each other and...
Test fails with pytest-8.0.0 with message: Failed: DID NOT WARN. No warnings of type (, , ) were emitted. Emitted warnings: [].
When xref table recovery is triggered by failure to find a valid trailer, accept the last valid trailer rather than the first valid trailer.
Refactor the creation of unresolved objects Create unresolved objects only for objects in the xref table (except during parsing of the xref table). Do not add indirect nulls into the...
API breaking Treating uninitialized objects as null has a number of benefits: - For performance reasons, qpdf uses shared nulls in a number of places. This is usually safe but...