()
| 119 | |
| 120 | |
| 121 | def _test_insert_adobe(): |
| 122 | path = os.path.abspath( f'{__file__}/../../../PyMuPDF-performance/adobe.pdf') |
| 123 | if not os.path.exists(path): |
| 124 | print(f'Not running test_insert_adobe() because does not exist: {os.path.relpath(path)}') |
| 125 | return |
| 126 | a = pymupdf.Document() |
| 127 | b = pymupdf.Document(path) |
| 128 | a.insert_pdf(b) |
| 129 | |
| 130 | |
| 131 | def _2861_2871_merge_pdf(content: bytes, coverpage: bytes): |
nothing calls this directly
no test coverage detected
searching dependent graphs…