( self, memory, name, path=None)
| 1976 | mupdf.fz_mount_multi_archive( self.this, sub, path) |
| 1977 | |
| 1978 | def _add_treeitem( self, memory, name, path=None): |
| 1979 | buff = JM_BufferFromBytes( memory) |
| 1980 | sub = mupdf.fz_new_tree_archive( mupdf.FzTree()) |
| 1981 | mupdf.fz_tree_archive_add_buffer( sub, name, buff) |
| 1982 | mupdf.fz_mount_multi_archive( self.this, sub, path) |
| 1983 | |
| 1984 | def _add_ziptarfile( self, filepath, type_, path=None): |
| 1985 | if type_ == 1: |
no test coverage detected