DEV Community

Water Run
Water Run

Posted on

pptx2png: Convert your .pptx to .png images with one click

pptx2png: Convert your .pptx to .png images with one click

GitHub

pptx2png is a Windows desktop application designed to export your .pptx slides as .png images with a single click. It is simple and straightforward:


Download

You can also use it as a Python library in your code. See:

PyPI

Example:

pip install pptx2png

Enter fullscreen mode Exit fullscreen mode
import pptx2png


pptx2png.topng(
    pptx="your_presentation.pptx",
    output_dir="./output",
    slide_range=[1, 5],
    scale=2
)

pptx2png.whatis() # print info

Enter fullscreen mode Exit fullscreen mode

Top comments (0)