Metadata-Version: 2.4
Name: pdf2pptx-fix
Version: 1.0.5.2
Summary: Utility to convert a PDF slideshow to Powerpoint PPTX.
Home-page: https://github.com/doctorixx/pdf2pptx-fix
Author: Kevin McGuinness
Author-email: genius@doctorixx.ru
License: MIT
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Utilities
Classifier: Topic :: Multimedia :: Graphics :: Presentation
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pymupdf
Requires-Dist: python-pptx
Requires-Dist: click
Requires-Dist: tqdm
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: summary


# pdf2pptx

> This repository is dependency fix of original package
> 
> Original project link: https://github.com/kevinmcguinness/pdf2pptx

**Utility to convert a PDF slideshow to Powerpoint PPTX.**

Renders each page as a PNG image and creates the resulting Powerpoint 
slideshow from these images. Useful when you want to use Powerpoint 
to present a set of PDF slides (e.g. slides from Beamer). You can then
use the presentation capabilities of Powerpoint (notes, ink on slides,
etc.) with slides created in LaTeX.

I use this to present PDF slides on a Surface Pro so that I can annotate
them with a stylus as I present.

Uses [PyMuPDF](https://github.com/pymupdf/PyMuPDF) and 
[python-pptx](https://github.com/scanny/python-pptx) to do the hard work.

## Installation

```bash
pip install pdf2pptx-fix
```

## Usage

The following will create a `slides.pptx` file from a `slides.pdf` file.

```bash
pdf2pptx slides.pdf
```

Run `pdf2pptx --help` for more info on the command line interface.


