Return the list of file formats that `.compare_images` can compare on this system. Returns ------- list of str E.g. ``['png', 'pdf', 'svg', 'eps']``.
()
| 266 | |
| 267 | |
| 268 | def comparable_formats(): |
| 269 | """ |
| 270 | Return the list of file formats that `.compare_images` can compare |
| 271 | on this system. |
| 272 | |
| 273 | Returns |
| 274 | ------- |
| 275 | list of str |
| 276 | E.g. ``['png', 'pdf', 'svg', 'eps']``. |
| 277 | |
| 278 | """ |
| 279 | return ['png', *converter] |
| 280 | |
| 281 | |
| 282 | def convert(filename, cache): |
no outgoing calls
no test coverage detected
searching dependent graphs…