(path)
| 84 | |
| 85 | @staticmethod |
| 86 | def read(path): |
| 87 | zip_path, path_img = ZipReader.split_zip_style_path(path) |
| 88 | zfile = ZipReader.get_zipfile(zip_path) |
| 89 | data = zfile.read(path_img) |
| 90 | return data |
| 91 | |
| 92 | @staticmethod |
| 93 | def imread(path): |
no test coverage detected