Parcourir la source

title size 20

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

+ 3 - 3
OpenshotService/openshot_video_generator.py

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