-
OverviewName of all images extracted on page are the same. Reproimage_list = page.get_images() Expected behaviorimage_list = page.get_images() ScreenshotsYour configuration (mandatory)
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
This has nothing to do with (Py-) MuPDF, but is specified that way by the PDF creator. |
Beta Was this translation helpful? Give feedback.
If the same image reference name occurs lime "Im0", then it at least should only happen if the image references occur in different XObjects. You can reveal this situation by
page.get_images(True)
. The items of this list are longer and contain the xref of the responsible XObject. If it was the page itself, that last item is 0.