├── .idea ├── .gitignore ├── MicroPython_BitMap_Tools.iml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── README.md ├── bitmapfonts.py ├── doc ├── example.png └── 如何生成点阵字体文件.md ├── main.py ├── requirements.txt ├── text.txt └── unifont-14.0.04.ttf /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonVanke/MicroPython-uFont-Tools/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/MicroPython_BitMap_Tools.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonVanke/MicroPython-uFont-Tools/HEAD/.idea/MicroPython_BitMap_Tools.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonVanke/MicroPython-uFont-Tools/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonVanke/MicroPython-uFont-Tools/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonVanke/MicroPython-uFont-Tools/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonVanke/MicroPython-uFont-Tools/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonVanke/MicroPython-uFont-Tools/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonVanke/MicroPython-uFont-Tools/HEAD/README.md -------------------------------------------------------------------------------- /bitmapfonts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonVanke/MicroPython-uFont-Tools/HEAD/bitmapfonts.py -------------------------------------------------------------------------------- /doc/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonVanke/MicroPython-uFont-Tools/HEAD/doc/example.png -------------------------------------------------------------------------------- /doc/如何生成点阵字体文件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonVanke/MicroPython-uFont-Tools/HEAD/doc/如何生成点阵字体文件.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonVanke/MicroPython-uFont-Tools/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Pillow~=9.2.0 2 | numpy~=1.23.2 -------------------------------------------------------------------------------- /text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonVanke/MicroPython-uFont-Tools/HEAD/text.txt -------------------------------------------------------------------------------- /unifont-14.0.04.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonVanke/MicroPython-uFont-Tools/HEAD/unifont-14.0.04.ttf --------------------------------------------------------------------------------