Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/hanjoes/ipng

Intuitive python PNG library
https://github.com/hanjoes/ipng

Last synced: 2 months ago
JSON representation

Intuitive python PNG library

Awesome Lists containing this project

README

        

# Description

Intuitive PNG library.

# Usage

## All-in-1
```python
from ipng import PNG

png = PNG(file='path/to/input.png')
print(png.metadata)
print(f'this is a {png.width}x{png.height} picture =)')
png.render(output='path/to/output.png')
```