Finalize this object, making the underlying file a complete PDF file.
(self)
| 2658 | return self._file |
| 2659 | |
| 2660 | def close(self): |
| 2661 | """ |
| 2662 | Finalize this object, making the underlying file a complete |
| 2663 | PDF file. |
| 2664 | """ |
| 2665 | if self._file is not None: |
| 2666 | self._file.finalize() |
| 2667 | self._file.close() |
| 2668 | self._file = None |
| 2669 | |
| 2670 | def infodict(self): |
| 2671 | """ |