Try to access layout information.
(self)
| 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): |