-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathppt_generator.py
514 lines (423 loc) · 20.7 KB
/
ppt_generator.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
#ppt_generator.py
from pptx import Presentation
from pptx.util import Inches, Pt
from pptx.enum.text import PP_ALIGN, MSO_VERTICAL_ANCHOR, MSO_AUTO_SIZE
from pptx.dml.color import RGBColor
from pptx.enum.shapes import MSO_SHAPE
import re
class PPTGenerator:
def __init__(self, theme="modern_blue"):
self.ppt = Presentation()
self.title_slide_layout = self.ppt.slide_layouts[0]
self.title_content_layout = self.ppt.slide_layouts[1]
self.section_layout = self.ppt.slide_layouts[2] if len(self.ppt.slide_layouts) > 2 else self.ppt.slide_layouts[1]
self.theme = theme
self.theme_colors = self._get_theme_colors(theme)
self.MAX_BULLETS_PER_SLIDE = 7 # Maximum number of bullet points per slide
def _get_theme_colors(self, theme_name):
"""Define color schemes for different themes"""
themes = {
"modern_blue": {
"primary": RGBColor(0, 114, 198), # Blue
"secondary": RGBColor(0, 51, 102), # Dark Blue
"accent": RGBColor(255, 153, 0), # Orange
"background": RGBColor(240, 244, 249), # Light Blue-Gray
"text": RGBColor(30, 30, 30) # Dark Gray
},
"elegant_dark": {
"primary": RGBColor(40, 40, 40), # Dark Gray
"secondary": RGBColor(20, 20, 20), # Almost Black
"accent": RGBColor(255, 195, 0), # Gold
"background": RGBColor(245, 245, 245), # Almost White
"text": RGBColor(60, 60, 60) # Gray
},
"vibrant": {
"primary": RGBColor(213, 0, 82), # Magenta
"secondary": RGBColor(35, 35, 35), # Dark Gray
"accent": RGBColor(64, 224, 208), # Turquoise
"background": RGBColor(248, 248, 248), # Off-White
"text": RGBColor(30, 30, 30) # Almost Black
},
"minimal": {
"primary": RGBColor(70, 70, 70), # Dark Gray
"secondary": RGBColor(160, 160, 160), # Medium Gray
"accent": RGBColor(255, 103, 77), # Coral
"background": RGBColor(250, 250, 250), # White
"text": RGBColor(40, 40, 40) # Very Dark Gray
}
}
return themes.get(theme_name, themes["modern_blue"])
def _process_text_formatting(self, text):
"""Process markdown-style formatting in text"""
# Bold formatting: **text** -> bold text
text = re.sub(r'\*\*(.*?)\*\*', r'\1', text)
# Italic formatting: *text* -> italic text
text = re.sub(r'\*(.*?)\*', r'\1', text)
# Remove any other markdown-style formatting
text = re.sub(r'__(.*?)__', r'\1', text)
text = re.sub(r'~~(.*?)~~', r'\1', text)
return text
def _apply_text_formatting(self, paragraph, text):
"""Apply rich text formatting based on markdown-style indicators"""
# Clear existing text
for run in paragraph.runs:
run.text = ""
# Process the basic text without formatting marks
clean_text = self._process_text_formatting(text)
paragraph.text = clean_text
# Apply bold formatting
bold_pattern = r'\*\*(.*?)\*\*'
bold_matches = re.finditer(bold_pattern, text)
for match in bold_matches:
for run in paragraph.runs:
if match.group(1) in run.text:
run.font.bold = True
# Apply italic formatting
italic_pattern = r'\*(.*?)\*'
italic_matches = re.finditer(italic_pattern, text)
for match in italic_matches:
for run in paragraph.runs:
if match.group(1) in run.text:
run.font.italic = True
return paragraph
def _estimate_text_length(self, text):
"""Estimate if text is too long for a single bullet point"""
# Simple estimation based on character count
# A typical slide can fit around 80-100 characters per line and about 10 lines
return len(text) > 100
def _split_long_bullet(self, text):
"""Split a long bullet point into multiple shorter ones at sentence boundaries"""
sentences = re.split(r'(?<=[.!?])\s+', text)
if len(sentences) == 1: # If no sentence boundaries, split on commas or semicolons
sentences = re.split(r'(?<=[,;])\s+', text)
# If still just one piece, and it's long, try to break at logical points
if len(sentences) == 1 and len(text) > 100:
words = text.split()
sentences = []
current = []
char_count = 0
for word in words:
if char_count + len(word) > 80: # Aim for ~80 chars per bullet
sentences.append(' '.join(current))
current = [word]
char_count = len(word)
else:
current.append(word)
char_count += len(word) + 1 # +1 for the space
if current:
sentences.append(' '.join(current))
return sentences
def add_title_slide(self, title, subtitle=None):
"""Add a visually enhanced title slide"""
slide = self.ppt.slides.add_slide(self.title_slide_layout)
# Add a background shape for visual interest
left = top = 0
width = Inches(10)
height = Inches(0.85)
shape = slide.shapes.add_shape(MSO_SHAPE.RECTANGLE, left, top, width, height)
shape.fill.solid()
shape.fill.fore_color.rgb = self.theme_colors["primary"]
shape.line.color.rgb = self.theme_colors["primary"]
# Set title
title_shape = slide.shapes.title
title_shape.text = title
title_shape.text_frame.paragraphs[0].font.size = Pt(44)
title_shape.text_frame.paragraphs[0].font.color.rgb = self.theme_colors["text"]
title_shape.text_frame.paragraphs[0].font.bold = True
# Enable text wrapping for title
title_shape.text_frame.word_wrap = True
title_shape.text_frame.auto_size = MSO_AUTO_SIZE.TEXT_TO_FIT_SHAPE
# Set subtitle if provided
if subtitle:
subtitle_shape = slide.placeholders[1]
subtitle_shape.text = subtitle
subtitle_shape.text_frame.paragraphs[0].font.size = Pt(24)
subtitle_shape.text_frame.paragraphs[0].font.color.rgb = self.theme_colors["secondary"]
# Enable text wrapping for subtitle
subtitle_shape.text_frame.word_wrap = True
subtitle_shape.text_frame.auto_size = MSO_AUTO_SIZE.TEXT_TO_FIT_SHAPE
# Add presenter name and date at the bottom
left = Inches(0.5)
top = Inches(6.5)
width = Inches(9)
height = Inches(0.5)
textbox = slide.shapes.add_textbox(left, top, width, height)
tf = textbox.text_frame
p = tf.add_paragraph()
p.text = "Created with AI Presentation Generator"
p.alignment = PP_ALIGN.RIGHT
p.font.size = Pt(12)
p.font.color.rgb = self.theme_colors["secondary"]
return slide
def add_section_slide(self, title, content, slide_number=1, total_slides=1):
"""Add a slide for a section with visually enhanced bullet points and proper content distribution"""
slide = self.ppt.slides.add_slide(self.title_content_layout)
# Add a small accent bar at the top
left = 0
top = 0
width = Inches(10)
height = Inches(0.2)
accent_shape = slide.shapes.add_shape(MSO_SHAPE.RECTANGLE, left, top, width, height)
accent_shape.fill.solid()
accent_shape.fill.fore_color.rgb = self.theme_colors["accent"]
accent_shape.line.color.rgb = self.theme_colors["accent"]
# Adjust title if multiple slides for same section
display_title = title
if total_slides > 1:
left = Inches(9) # Right side
top = Inches(6.5) # Bottom
width = Inches(0.5)
height = Inches(0.3)
textbox = slide.shapes.add_textbox(left, top, width, height)
tf = textbox.text_frame
p = tf.add_paragraph()
p.text = f"{slide_number}/{total_slides}"
p.alignment = PP_ALIGN.RIGHT
p.font.size = Pt(10) # Smaller font
p.font.color.rgb = self.theme_colors["secondary"]
# Set slide title with enhanced styling
title_shape = slide.shapes.title
title_shape.text = display_title
title_shape.text_frame.paragraphs[0].font.size = Pt(36)
title_shape.text_frame.paragraphs[0].font.color.rgb = self.theme_colors["primary"]
title_shape.text_frame.paragraphs[0].font.bold = True
# Enable text wrapping for title
title_shape.text_frame.word_wrap = True
title_shape.text_frame.auto_size = MSO_AUTO_SIZE.TEXT_TO_FIT_SHAPE
# Add content as bullet points with better formatting
content_shape = slide.placeholders[1]
text_frame = content_shape.text_frame
text_frame.clear() # Clear any existing paragraphs
# Enable word wrap and text fitting for content shape
text_frame.word_wrap = True
text_frame.auto_size = MSO_AUTO_SIZE.SHAPE_TO_FIT_TEXT
for idx, point in enumerate(content):
p = text_frame.add_paragraph()
# Clean the text of markdown formatting markers
clean_point = self._process_text_formatting(point)
p.text = clean_point
# Set bullet style
p.level = 0
p.font.size = Pt(24)
p.font.color.rgb = self.theme_colors["text"]
# Apply rich text formatting if needed (bold, italic)
self._apply_text_formatting(p, point)
return slide
def add_section_header_slide(self, section_title):
"""Add a divider slide to mark a new section"""
slide = self.ppt.slides.add_slide(self.section_layout)
# Create a full slide colored background
left = 0
top = 0
width = self.ppt.slide_width
height = self.ppt.slide_height
background = slide.shapes.add_shape(MSO_SHAPE.RECTANGLE, left, top, width, height)
background.fill.solid()
background.fill.fore_color.rgb = self.theme_colors["primary"]
background.line.color.rgb = self.theme_colors["primary"]
# Add section title in the center
left = Inches(1)
top = Inches(2.5)
width = Inches(8)
height = Inches(2)
textbox = slide.shapes.add_textbox(left, top, width, height)
tf = textbox.text_frame
tf.vertical_anchor = MSO_VERTICAL_ANCHOR.MIDDLE
tf.word_wrap = True
p = tf.add_paragraph()
p.text = section_title
p.alignment = PP_ALIGN.CENTER
p.font.size = Pt(54)
p.font.bold = True
p.font.color.rgb = RGBColor(255, 255, 255) # White text
return slide
def add_closing_slide(self, title="Thank You", content=None):
"""Add a visually distinct closing slide"""
slide = self.ppt.slides.add_slide(self.title_content_layout)
# Set background
left = 0
top = 0
width = self.ppt.slide_width
height = self.ppt.slide_height
# Add a gradient-like effect with two shapes
shape1 = slide.shapes.add_shape(MSO_SHAPE.RECTANGLE, left, top, width, height/2)
shape1.fill.solid()
shape1.fill.fore_color.rgb = self.theme_colors["secondary"]
shape1.line.color.rgb = self.theme_colors["secondary"]
shape2 = slide.shapes.add_shape(MSO_SHAPE.RECTANGLE, left, height/2, width, height/2)
shape2.fill.solid()
shape2.fill.fore_color.rgb = self.theme_colors["primary"]
shape2.line.color.rgb = self.theme_colors["primary"]
# Add title in the center
left = Inches(1)
top = Inches(2.5)
width = Inches(8)
height = Inches(1.5)
textbox = slide.shapes.add_textbox(left, top, width, height)
tf = textbox.text_frame
tf.word_wrap = True
p = tf.add_paragraph()
p.text = title
p.alignment = PP_ALIGN.CENTER
p.font.size = Pt(60)
p.font.bold = True
p.font.color.rgb = RGBColor(255, 255, 255) # White text
# Add content if provided
if content:
left = Inches(1)
top = Inches(4)
width = Inches(8)
height = Inches(1)
content_box = slide.shapes.add_textbox(left, top, width, height)
tf = content_box.text_frame
tf.word_wrap = True
p = tf.add_paragraph()
p.text = content
p.alignment = PP_ALIGN.CENTER
p.font.size = Pt(28)
p.font.color.rgb = RGBColor(255, 255, 255) # White text
return slide
def _distribute_content(self, title, content, max_slides=None):
"""
Distribute content across multiple slides if needed, respecting the maximum slides limit.
Args:
title (str): The section title
content (list): List of bullet points
max_slides (int, optional): Maximum number of slides for this section
Returns:
list: List of tuples (title, content) for each slide
"""
# Process content to split long bullets
processed_content = []
for point in content:
if self._estimate_text_length(point):
split_points = self._split_long_bullet(point)
processed_content.extend(split_points)
else:
processed_content.append(point)
# If max_slides is specified, we need to adjust content density
if max_slides and max_slides > 0:
# Calculate minimum points per slide needed to fit within max_slides
min_points_per_slide = max(1, len(processed_content) // max_slides)
# Adjust MAX_BULLETS_PER_SLIDE if needed to fit content within max_slides
points_per_slide = min(self.MAX_BULLETS_PER_SLIDE,
max(min_points_per_slide,
min(7, (len(processed_content) + max_slides - 1) // max_slides)))
else:
points_per_slide = self.MAX_BULLETS_PER_SLIDE
# Check if we need multiple slides
if len(processed_content) <= points_per_slide:
# If content fits on one slide, return it as is
return [(title, processed_content)]
# Distribute content across multiple slides
slides_content = []
num_slides = min(max_slides or float('inf'),
(len(processed_content) + points_per_slide - 1) // points_per_slide)
# Recalculate points per slide to evenly distribute
points_per_slide = (len(processed_content) + num_slides - 1) // num_slides
for i in range(num_slides):
start_idx = i * points_per_slide
end_idx = min((i + 1) * points_per_slide, len(processed_content))
slide_content = processed_content[start_idx:end_idx]
slides_content.append((title, slide_content))
return slides_content
def generate_from_content(self, content):
"""Generate a complete PowerPoint from structured content with accurate slide counting"""
# Get target slide count
target_slides = int(content.get("target_slides", 15))
# Add title slide
self.add_title_slide(content.get("title", "Presentation"), content.get("subtitle", ""))
# Track current section to add section dividers
current_section = None
# Identify major sections for section header slides
sections = content.get("sections", [])
unique_major_sections = set()
for section in sections:
section_title = section.get("title", "Section")
major_section = section_title.split(":")[0].strip()
unique_major_sections.add(major_section)
# Calculate fixed slides (title, section headers, closing)
fixed_slides = 2 # Title and closing slides
fixed_slides += len(unique_major_sections) # Section header slides
# Calculate slides available for content
available_slides = max(1, target_slides - fixed_slides)
# Distribute available slides proportionally among sections
section_weights = []
for section in sections:
# Weight each section by its content length
section_content = section.get("content", [])
section_weights.append(len(section_content))
total_weight = sum(section_weights) or 1 # Avoid division by zero
# Calculate target slides per section
section_slides = []
remaining_slides = available_slides
for weight in section_weights:
# Proportional distribution with minimum of 1 slide per section
slides = max(1, int(round((weight / total_weight) * available_slides)))
if slides > remaining_slides:
slides = remaining_slides
section_slides.append(slides)
remaining_slides -= slides
# Adjust if we've allocated too many or too few slides
while remaining_slides < 0:
# Remove slides from the longest sections
idx = section_weights.index(max(section_weights))
if section_slides[idx] > 1: # Ensure minimum 1 slide per section
section_slides[idx] -= 1
remaining_slides += 1
section_weights[idx] = 0 # Mark as processed
while remaining_slides > 0:
# Add slides to sections with most content
if max(section_weights) > 0:
idx = section_weights.index(max(section_weights))
section_slides[idx] += 1
remaining_slides -= 1
section_weights[idx] = 0 # Mark as processed
else:
# If all sections are processed, reset weights and continue
section_weights = [len(section.get("content", [])) for section in sections]
if sum(section_weights) == 0:
break
# Create all slides
content_slide_index = 0
current_section = None
for idx, section in enumerate(sections):
section_title = section.get("title", "Section")
section_content = section.get("content", [])
content_slide_index += 1
# Check if this is a new major section
major_section = section_title.split(":")[0].strip()
if current_section is None or current_section != major_section:
current_section = major_section
self.add_section_header_slide(current_section)
# Distribute content across exactly the number of slides allocated
distributed_content = self._distribute_content(
section_title,
section_content,
max_slides=section_slides[idx]
)
# Create slides for this section
total_section_slides = len(distributed_content)
for slide_idx, (slide_title, slide_content) in enumerate(distributed_content):
self.add_section_slide(
slide_title,
slide_content,
slide_number=slide_idx+1,
total_slides=total_section_slides
)
# Add a closing slide with call to action if present
call_to_action = content.get("call_to_action", "")
if call_to_action:
self.add_closing_slide("Thank You", call_to_action)
else:
self.add_closing_slide()
# Verify the total number of slides
actual_slides = len(self.ppt.slides)
return self.ppt, len(self.ppt.slides)
def save(self, filename="presentation.pptx"):
"""Save the presentation to a file"""
# Ensure the filename has the correct extension
if not filename.endswith('.pptx'):
filename += '.pptx'
self.ppt.save(filename)
return filename