A Python program making a PPT presentation from the images (.png or .jpg) saved in the given folder.
121
This tool converts a set of images into a PowerPoint presentation using a predefined template. It is fully containerised with Docker, so no Python or PowerPoint installation is required.
Create a working directory anywhere on your computer and add two subfolders:
your-folder/ ├── fig_results/ └── output/
fig_results/
Place all images (.png, .jpg, .jpeg) you want to include in the PowerPoint here.
output/
The generated PowerPoint file (.pptx) will be saved here.
Run the following command to download the image from Docker Hub:
docker pull maryamma94/ppt-generator:latest
Run the PowerPoint Generator Run the command from inside your-folder.
docker run --rm `
-v "${PWD}\fig_results:/app/fig_results" `
-v "${PWD}\output:/app/output" `
maryamma94/ppt-generator:latest
docker run --rm \
-v "$(pwd)/fig_results:/app/fig_results" \
-v "$(pwd)/output:/app/output" \
maryamma94/ppt-generator:latest
Content type
Image
Digest
sha256:609eced68…
Size
67.5 MB
Last updated
5 months ago
docker pull maryamma94/ppt-generator