Parcourir la source

disable try catch

ming il y a 3 ans
Parent
commit
b5c39198c0
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      OpenshotService/openshot_video_generator.py

+ 1 - 1
OpenshotService/openshot_video_generator.py

@@ -168,7 +168,7 @@ def txt2image_title(content, save_target, lang='zh'):
     if lang=='zh':
         font = ImageFont.truetype(font="font/DFT_B7.ttc", size=38)
     else :
-        font = ImageFont.load("arial.pil")
+        font = ImageFont.truetype(font="font/arial.ttf", size=38)
     text_width, text_height = font.getsize(unicode_text)
     canvas = Image.new('RGBA', (510, 500), (255, 0, 0, 0) )
     draw = ImageDraw.Draw(canvas)