Number of pages.
(self)
| 5944 | |
| 5945 | @property |
| 5946 | def page_count(self): |
| 5947 | """Number of pages.""" |
| 5948 | if self.is_closed: |
| 5949 | raise ValueError('document closed') |
| 5950 | if g_use_extra: |
| 5951 | return self.page_count2(self) |
| 5952 | if isinstance( self.this, mupdf.FzDocument): |
| 5953 | return mupdf.fz_count_pages( self.this) |
| 5954 | else: |
| 5955 | return mupdf.pdf_count_pages( self.this) |
| 5956 | |
| 5957 | def page_cropbox(self, pno): |
| 5958 | """Get CropBox of page number (without loading page).""" |