(image_bytes:bytes, chunk_starting_index:int)
| 118 | |
| 119 | |
| 120 | def get_chunk_length(image_bytes:bytes, chunk_starting_index:int) -> int: |
| 121 | return int.from_bytes(image_bytes[chunk_starting_index:chunk_starting_index+4], byteorder="big") |
| 122 | |
| 123 | |
| 124 | def decode(self, image_path) -> None: |
no outgoing calls
no test coverage detected