Metadata-Version: 2.4
Name: pyheic
Version: 1.0.0
Summary: Convert HEIC images to JPEG from Python or the command line.
Author-email: Abhishek <abhiinthweb@gmail.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/Abhiintheweb/pyheic
Project-URL: Issues, https://github.com/Abhiintheweb/pyheic/issues
Keywords: heic,jpeg,image,conversion,cli
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Operating System :: OS Independent
Classifier: Topic :: Multimedia :: Graphics :: Graphics Conversion
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pillow>=10.0.0
Requires-Dist: pillow-heif>=0.16.0
Dynamic: license-file

# pyheic

Python package to convert `.heic` / `.heif` images into `.jpg`.

## Install

```bash
pip install pyheic
```

For local development:

```bash
pip install -e .
```

## CLI usage

```bash
heic2jpeg input.heic
heic2jpeg input.heic --output output.jpg --quality 90
```

## Python usage

```python
from pyheic import convert_heic_to_jpeg

output = convert_heic_to_jpeg("input.heic", quality=90)
print(output)
```
