Metadata-Version: 2.1
Name: pptx2img
Version: 0.1.0
Summary: This library helps in converting pptx slides to images using LibreOffice
Home-page: https://github.com/captainnarwal/pptx2img
Author: Neeraj Narwal
Author-email: neerajnarwal2000@gmail.com
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# pptx2img

`pptx2img` is a Python library that converts PowerPoint (.pptx) files into image files (.png) using LibreOffice.

## Installation

To install `pptx2img`, use pip:

```bash
pip install pptx2img
```


## Usage
Here's an example of how to use the PPTXConverter class:

```bash
from pptx2img import PPTXConverter

converter = PPTXConverter()
converter.convert_pptx_to_images('path_to_pptx_file.pptx', 'output_folder')

```
