5
5
from PIL import Image , ImageDraw , ImageFont
6
6
7
7
8
- def create_image (text , font , index = 0 , image_size = (1920 , 1080 ),
9
- bg_color = (255 , 255 , 255 ), font_color = (0 , 0 , 0 ),
10
- save_location = "./resource/tmp" ):
8
+ def create_image (text , font , index = 0 , image_size = (1920 , 1080 ),
9
+ bg_color = (255 , 255 , 255 ), font_color = (0 , 0 , 0 ),
10
+ save_location = "./resource/tmp" ):
11
11
font_size = font .size
12
12
# text treatment
13
13
text = textwrap .wrap (text , width = font_size )
@@ -16,7 +16,7 @@ def create_image(text, font, index=0, image_size=(1920, 1080),
16
16
img = Image .new ('RGB' , image_size , bg_color )
17
17
draw = ImageDraw .Draw (img )
18
18
# drawing lines in text with padding
19
- current_h , pad = MAX_H / 2 - ((len (text )* font_size / 2 )), 10
19
+ current_h , pad = MAX_H / 2 - ((len (text ) * font_size / 2 )), 10
20
20
for line in text :
21
21
w , h = draw .textsize (line , font = font )
22
22
draw .text (((MAX_W - w ) / 2 , current_h ),
@@ -41,7 +41,7 @@ def create_frames(images, fps=10, duration_per_frame=3):
41
41
img_array = []
42
42
for filename in images :
43
43
img = cv2 .imread (filename )
44
- for i in range (fps * duration_per_frame ):
44
+ for i in range (fps * duration_per_frame ):
45
45
img_array .append (img )
46
46
return img_array
47
47
@@ -73,7 +73,7 @@ def remove_temp_files(files):
73
73
images = []
74
74
for idx , sentence in enumerate (sentences ):
75
75
imagePath = create_image (
76
- sentence , font , idx + 1 , image_size = dimensions )
76
+ sentence , font , idx + 1 , image_size = dimensions )
77
77
images .append (imagePath )
78
78
# read all images
79
79
frames = create_frames (images , fps = fps , duration_per_frame = 1 )
0 commit comments