The vertical dots per inch value calculated from the XResolution and ResolutionUnit tags of the IFD; defaults to 72 if those tags are not present.
(self)
| 59 | |
| 60 | @property |
| 61 | def vert_dpi(self): |
| 62 | """The vertical dots per inch value calculated from the XResolution and |
| 63 | ResolutionUnit tags of the IFD; defaults to 72 if those tags are not present.""" |
| 64 | return self._dpi(TIFF_TAG.Y_RESOLUTION) |
| 65 | |
| 66 | @property |
| 67 | def px_height(self): |