(path)
| 77 | |
| 78 | @staticmethod |
| 79 | def read(path): |
| 80 | zip_path, path_img = ZipReader.split_zip_style_path(path) |
| 81 | zfile = ZipReader.get_zipfile(zip_path) |
| 82 | data = zfile.read(path_img) |
| 83 | return data |
| 84 | |
| 85 | @staticmethod |
| 86 | def imread(path): |
no test coverage detected