0
0
3
| 1 | #!/usr/bin/env python3 |
| 2 | """ |
| 3 | icon2img — shared engine for turning a 24x24 icon/logo SVG into a square |
| 4 | raster (or vector) image suitable for a profile picture / avatar. |
| 5 | |
| 6 | This module is used by the thin CLI wrappers `lucide2img.py` and |
| 7 | `simpleicons2img.py`. Each wrapper only describes its icon *source* |
| 8 | (URL, how to recolor, how to slugify names) via an `IconSource` and then |
| 9 | calls `run(source)`. |