The count of directory entries, read from the top of the IFD header.
(self)
| 164 | |
| 165 | @property |
| 166 | def _entry_count(self): |
| 167 | """The count of directory entries, read from the top of the IFD header.""" |
| 168 | return self._stream_rdr.read_short(self._offset) |
| 169 | |
| 170 | |
| 171 | def _IfdEntryFactory(stream_rdr, offset): |
nothing calls this directly
no test coverage detected