|  | @@ -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)
 |