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