Files
other/ttf/hex2ttf.py
T
2026-06-09 15:54:01 +08:00

8 lines
104 B
Python

data = bytes([
])
with open("output.ttf", "wb") as f:
f.write(data)
print("TTF 文件已生成")