获取支持写入的文件扩展名
(self)
| 142 | return ['png', 'bmp', 'jpg', 'jpeg'] |
| 143 | |
| 144 | def get_writable_file_extensions(self) -> List[str]: |
| 145 | """获取支持写入的文件扩展名""" |
| 146 | # LSB需要无损格式 |
| 147 | return ['png', 'bmp'] |
| 148 | |
| 149 | def create_config(self) -> LSBConfig: |
| 150 | """创建默认配置""" |
nothing calls this directly
no outgoing calls
no test coverage detected