Check whether incremental saves are possible.
(self)
| 4231 | return val |
| 4232 | |
| 4233 | def can_save_incrementally(self): |
| 4234 | """Check whether incremental saves are possible.""" |
| 4235 | pdf = _as_pdf_document(self, required=0) |
| 4236 | if not pdf.m_internal: |
| 4237 | return False |
| 4238 | return mupdf.pdf_can_be_saved_incrementally(pdf) |
| 4239 | |
| 4240 | def bake(self, *, annots: bool = True, widgets: bool = True) -> None: |
| 4241 | """Convert annotations or fields to permanent content. |