From 45e8fa0e07db0fe04f91fef070a02925a40c8354 Mon Sep 17 00:00:00 2001 From: AUTOMATIC <16777216c@gmail.com> Date: Mon, 12 Sep 2022 19:17:02 +0300 Subject: [PATCH] X/Y plot can not output the final result with this error message #244 --- modules/images.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/modules/images.py b/modules/images.py index 05fc4206..d742ed98 100644 --- a/modules/images.py +++ b/modules/images.py @@ -135,7 +135,12 @@ def draw_grid_annotations(im, width, height, hor_texts, ver_texts): fontsize = (width + height) // 25 line_spacing = fontsize // 2 - fnt = ImageFont.truetype(opts.font or Roboto, fontsize) + + try: + fnt = ImageFont.truetype(opts.font or Roboto, fontsize) + except Exception: + fnt = ImageFont.truetype(Roboto, fontsize) + color_active = (0, 0, 0) color_inactive = (153, 153, 153)