Spaces:
Running
on
Zero
Running
on
Zero
File size: 2,290 Bytes
d90acf0 |
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 |
from pptx import Presentation
from pptx.util import Inches
from pptx.oxml.xmlchemy import OxmlElement
from pptx.dml.color import RGBColor
from pptx.enum.text import PP_ALIGN, MSO_ANCHOR, MSO_AUTO_SIZE
from typing import List, Callable, Optional
from PIL import Image
import random
import tqdm
import os
from .image_slide import generate_image_slide
from .plain_text_slide import generate_plain_text_slide
from .title_slide import generate_title_slide
from src.font import Font
def generate_slide(
presentation: Presentation,
title: str,
text: Optional[str] = None,
background_path: Optional[str] = None,
picture_path: Optional[str] = None,
font: Font = None,
text_font_coeff:float=0.6,
) -> None:
"""
Generate a slide in the presentation based on the provided content.
Args:
presentation (Presentation): The presentation object.
title (str): The title of the slide.
text (Optional[str]): The text content for the slide (default is None).
picture_path (Optional[str]): The path to the picture for the slide (default is None).
background_path (Optional[str]): The path to the background image for the slide (default is None).
font (Font): Font object to manage font styles and paths.
text_font_coeff (float): Coefficient to adjust the font size
of the text relative to the title (default is 0.6).
"""
if title and text is None and picture_path is None and background_path:
generate_title_slide(
presentation=presentation,
title=title,
font=font,
background_path=background_path,
)
elif title and text and background_path and picture_path is None:
generate_plain_text_slide(
presentation=presentation,
title=title,
text=text,
background_path=background_path,
font=font,
text_font_coeff=text_font_coeff,
)
elif title and text and picture_path and background_path is None:
generate_image_slide(
presentation=presentation,
title=title,
text=text,
picture_path=picture_path,
font=font,
text_font_coeff=text_font_coeff,
) |