The number of stacked rows of pixels in the image, |None| if the IFD contains no ``ImageLength`` tag, the expected case when the TIFF is embeded in an Exif image.
(self)
| 65 | |
| 66 | @property |
| 67 | def px_height(self): |
| 68 | """The number of stacked rows of pixels in the image, |None| if the IFD contains |
| 69 | no ``ImageLength`` tag, the expected case when the TIFF is embeded in an Exif |
| 70 | image.""" |
| 71 | return self._ifd_entries.get(TIFF_TAG.IMAGE_LENGTH) |
| 72 | |
| 73 | @property |
| 74 | def px_width(self): |