The number of pixels in each row in the image, |None| if the IFD contains no ``ImageWidth`` tag, the expected case when the TIFF is embeded in an Exif image.
(self)
| 72 | |
| 73 | @property |
| 74 | def px_width(self): |
| 75 | """The number of pixels in each row in the image, |None| if the IFD contains no |
| 76 | ``ImageWidth`` tag, the expected case when the TIFF is embeded in an Exif |
| 77 | image.""" |
| 78 | return self._ifd_entries.get(TIFF_TAG.IMAGE_WIDTH) |
| 79 | |
| 80 | @classmethod |
| 81 | def _detect_endian(cls, stream): |