python-pptx
python-pptx copied to clipboard
Create Open XML PowerPoint documents in Python
I think it was a typo, autosize from fit_text() method should be NONE. I'm a newbie and want to ask what is the analysis section in docs? is it only...
From the documentation `Another way a placeholder acts differently is that it inherits its position and size from its layout placeholder. This inheritance is overridden if the position and size...
Is there a way to merge two pptx?
add an optional argument in insert_picture to decide if picture should be maximized and cropped (current default behaviour), or shrinked to fit the placeholder
``` ======================================================================================================================================================= short test summary info ======================================================================================================================================================= ERROR tests/chart/test_axis.py - DeprecationWarning: 'delimitedList' deprecated - use 'DelimitedList' ERROR tests/chart/test_category.py - DeprecationWarning: 'delimitedList' deprecated - use 'DelimitedList' ERROR tests/chart/test_chart.py - DeprecationWarning: 'delimitedList'...
Updated usage of pyparsing's delimitedList to DelimitedList in the cxml test grammar for compatibility with newer pyparsing versions. pull request to resolve issue with https://github.com/scanny/python-pptx/issues/1103
Writing maths is needed very frequently in scientific background. Powerpoint has built-in formula support, is it possible to have access to that? At the moment, when I want some formula,...
Hi , When I setting the ` chart.category_axis.visible = False` , but axis still in the chart.This bug affects all axis.visible function. In xmlchemy.py, ``` @property def _setter(self) -> Callable[[BaseOxmlElement,...
The clone_placeholder method on _BaseShapes makes a call to _next_ph_name to get the name of the new shape. If the placeholder name in the layout has been changed from the...
# Add Comprehensive Transparency Support to python-pptx ## 🎯 Overview This PR adds complete transparency/opacity support to python-pptx, enabling developers to control the transparency of shape fills and colors. The...