MCPcopy Create free account
hub / github.com/pymupdf/PyMuPDF / get_layout

Method get_layout

src/__init__.py:10793–10805  ·  view source on GitHub ↗

Try to access layout information.

(self)

Source from the content-addressed store, hash-verified

10791 mupdf.pdf_clip_page(pdfpage, pclip)
10792
10793 def get_layout(self):
10794 """Try to access layout information."""
10795
10796 if self.layout_information is not None:
10797 # layout information already present
10798 return
10799
10800 if not _get_layout:
10801 # no layout information available
10802 return
10803
10804 layout_info = _get_layout(self)
10805 self.layout_information = layout_info
10806
10807 @property
10808 def artbox(self):

Callers 1

find_tablesFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected