The ArtBox
(self)
| 10806 | |
| 10807 | @property |
| 10808 | def artbox(self): |
| 10809 | """The ArtBox""" |
| 10810 | rect = self._other_box("ArtBox") |
| 10811 | if rect is None: |
| 10812 | return self.cropbox |
| 10813 | mb = self.mediabox |
| 10814 | return Rect(rect[0], mb.y1 - rect[3], rect[2], mb.y1 - rect[1]) |
| 10815 | |
| 10816 | @property |
| 10817 | def bleedbox(self): |
nothing calls this directly
no test coverage detected