Return the long 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)
| 260 | |
| 261 | @classmethod |
| 262 | def _parse_value(cls, stream_rdr, offset, value_count, value_offset): |
| 263 | """Return the long int value contained in the `value_offset` field of this |
| 264 | entry. |
| 265 | |
| 266 | Only supports single values at present. |
| 267 | """ |
| 268 | if value_count == 1: |
| 269 | return stream_rdr.read_long(offset, 8) |
| 270 | else: # pragma: no cover |
| 271 | return "Multi-value long integer NOT IMPLEMENTED" |
| 272 | |
| 273 | |
| 274 | class _RationalIfdEntry(_IfdEntry): |