-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path123345.py
128 lines (109 loc) · 3.24 KB
/
123345.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
from pptx import Presentation
from pptx.util import Inches, Pt
from pptx.enum.text import PP_ALIGN
# Create a new Presentation
prs = Presentation()
slide_width = prs.slide_width
slide_height = prs.slide_height
def add_slide(title_text, content_text, bg_image_path):
"""
Creates a new slide with a background image and a centered text-box for title and content.
"""
# Use a blank slide layout
slide_layout = prs.slide_layouts[6]
slide = prs.slides.add_slide(slide_layout)
# Insert background image if available
try:
slide.shapes.add_picture(bg_image_path, 0, 0, width=slide_width, height=slide_height)
except Exception as e:
print(f"Could not load background image {bg_image_path}: {e}")
# Create a textbox for slide content
# Adjust left, top, width, height to control placement.
left = Inches(1)
top = Inches(1)
width = slide_width - Inches(2)
height = slide_height - Inches(2)
textbox = slide.shapes.add_textbox(left, top, width, height)
text_frame = textbox.text_frame
# Title Paragraph
title_para = text_frame.add_paragraph()
title_para.text = title_text
title_para.font.size = Pt(40)
title_para.font.bold = True
title_para.alignment = PP_ALIGN.CENTER
# Spacer Paragraph
spacer = text_frame.add_paragraph()
spacer.text = ""
# Content Paragraph
content_para = text_frame.add_paragraph()
content_para.text = content_text.strip()
content_para.font.size = Pt(28)
content_para.alignment = PP_ALIGN.CENTER
# Define background image paths (update these paths to match your files)
bg_images = [
"background1.jpg", # for Starter Task
"background2.jpg", # for Vocabulary
"background3.jpg", # for Retention and Recall
"background4.jpg", # for Lesson Objective
"background5.jpg", # for Tasks
"background6.jpg", # for Stretch and Challenge
"background7.jpg", # for Plenary
"background8.jpg" # for Homework
]
# Slide 1: Starter Task
add_slide(
"Starter Task",
"Compare posters for children and adults.",
bg_images[0]
)
# Slide 2: Vocabulary
add_slide(
"Vocabulary",
"Contrast, Legibility, Alignment, Composition",
bg_images[1]
)
# Slide 3: Retention and Recall
add_slide(
"Retention and Recall",
"Review last week's design principles.",
bg_images[2]
)
# Slide 4: Lesson Objective
add_slide(
"Lesson Objective",
"Learn how design differs based on the audience.",
bg_images[3]
)
# Slide 5: Tasks
tasks_text = (
"• Identify features of an effective children’s flyer.\n"
"• Begin designing the flyer layout.\n"
"• Select fonts and colours suitable for children."
)
add_slide(
"Tasks",
tasks_text,
bg_images[4]
)
# Slide 6: Stretch and Challenge
add_slide(
"Stretch and Challenge",
"Research psychology of colours in design.",
bg_images[5]
)
# Slide 7: Plenary
add_slide(
"Plenary",
"Share initial flyer drafts.",
bg_images[6]
)
# Slide 8: Homework
add_slide(
"Homework",
"Analyse two real-world posters and explain their effectiveness.",
bg_images[7]
)
# Save the presentation
pptx_filename = "Canva_Lesson_2_Understanding_Target_Audiences.pptx"
prs.save(pptx_filename)
print(f"Presentation saved as {pptx_filename}")