Sergey Malygin
Sergey Malygin
Try it. https://github.com/scanny/python-pptx/issues/884#issuecomment-1578676563 Or ```python def set_font(run: _Run, font: Font) -> _Run: run._r.insert(0, font._rPr) return run ```
The Image class does not support svg format. ` Immutable value object representing an image such as a JPEG, PNG, or GIF.` But you can save it in a different...
Can you take a look at the fork https://github.com/AndreasSteiner/python-pptx
Use the [petpptx](https://github.com/sedrew/petpptx) package, this is an updated fork of python-pptx ``` python -m pip install petpptx ``` Saved previous font style ```python font_style= text_frame.paragraphs[0].runs[0].font text_frame.clear() run = text_frame.paragraphs[0].add_run() run.font...
Hi, I'll take a look at your problem over the weekend. There is another option, you can create a template and use the library to access presentation objects and change...