contrib: viptext: use a monospace font

This commit is contained in:
xfnw 2024-01-13 18:33:24 -05:00
parent 0a3bcde32c
commit 571b7db5dc
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ def flutsend(img,ox,oy):
def fluttext(text,x,y,width=1024):
img = pyvips.Image.text(text,dpi=150,width=width)
img = pyvips.Image.text(text,dpi=150,font='monospace',width=width)
flutsend(img,x,y)