mara004
mara004
> Hopefully this feature can be added to a user wish list and maybe considered for development some day. Yeah, I've just noticed page tiling is in fact already in...
> Thank you, I skipped constructing a PDF Dictionary thinking it would be as simple as changing the MediaBox. > This produces the wanted results with TrimBox and also with...
Yeah, alternate mixing separately scanned front/back sides indeed is a common use case. However, last time I tried the paste interleave odd/even feature it didn't seem to work at all...
Unfortunately I am still experiencing the issue. I filed a new bug report as you suggested (#529). Maybe @camlafit can provide additional information on the platform they use and how...
> Is it possible to add an API to the outline with "automatic" page number resolution? I think I'm not the only one who just want to get sonething like...
I tried resolving bookmarks again and wanted to share what I'd come up with so far. PyMuPDF `getToC()` is considerably faster than my `get_pikepdf_toc()` method, however. ```python # SPDX-FileCopyrightText: 2021...
What's still missing in my above code is the level, but this could be added easily with the recursion depth of `analyse_children()`
@BioBox My above code is a bit outdated. Now that qpdf provides a function to resolve destinations to page numbers, I think it would be a lot easier if someone...
Well, each object that you get when iterating over the outline root is an [`OutlineItem`](https://pikepdf.readthedocs.io/en/latest/api/models.html#pikepdf.models.OutlineItem) and you may directly access its action dictionary (`item.action`), which usually has a `/D` key...
> In the above example item.action returns NotImplementedError: don't know how to `__str__` this object - so it doesn't seem to be possible to access anything in that case. Is...