Metadata-Version: 2.4
Name: simple-image-to-pdf
Version: 0.1.0
Summary: Merge a series of images into an A4-sized PDF with automatic portrait/landscape orientation.
License: MIT
License-File: LICENSE
Author: GGN_2015
Author-email: neko@jlulug.org
Requires-Python: >=3.10
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Dist: pillow
Requires-Dist: reportlab
Requires-Dist: tqdm
Description-Content-Type: text/markdown

# simple_image_to_pdf
Merge a series of images into an A4-sized PDF with automatic portrait/landscape orientation.

## Installation

```bash
pip install simple_image_to_pdf
```

## Usage

```python
from simple_image_to_pdf import images_to_pdf

image_files = ["1.jpg", "2.png"]
output_path = "sample.pdf"

failed_img = images_to_pdf.(image_files, output_path)
```

