Return the short int value contained in the `value_offset` field of this entry. Only supports single values at present.
(cls, stream_rdr, offset, value_count, value_offset)
| 244 | |
| 245 | @classmethod |
| 246 | def _parse_value(cls, stream_rdr, offset, value_count, value_offset): |
| 247 | """Return the short int value contained in the `value_offset` field of this |
| 248 | entry. |
| 249 | |
| 250 | Only supports single values at present. |
| 251 | """ |
| 252 | if value_count == 1: |
| 253 | return stream_rdr.read_short(offset, 8) |
| 254 | else: # pragma: no cover |
| 255 | return "Multi-value short integer NOT IMPLEMENTED" |
| 256 | |
| 257 | |
| 258 | class _LongIfdEntry(_IfdEntry): |
nothing calls this directly
no test coverage detected