pptx2png: Convert your .pptx to .png images with one click
pptx2png is a Windows desktop application designed to export your .pptx slides as .png images with a single click. It is simple and straightforward:
You can also use it as a Python library in your code. See:
Example:
pip install pptx2png
import pptx2png
pptx2png.topng(
pptx="your_presentation.pptx",
output_dir="./output",
slide_range=[1, 5],
scale=2
)
pptx2png.whatis() # print info

Top comments (0)