From 571b7db5dc52adbde613238f4f389d047f118993 Mon Sep 17 00:00:00 2001 From: xfnw Date: Sat, 13 Jan 2024 18:33:24 -0500 Subject: [PATCH] contrib: viptext: use a monospace font --- contrib/viptext | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/viptext b/contrib/viptext index d170079..0efe943 100755 --- a/contrib/viptext +++ b/contrib/viptext @@ -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)