Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/hanjoes/ipng
- Owner: hanjoes
- License: mit
- Created: 2019-05-03T04:27:34.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-04-20T18:10:47.000Z (over 3 years ago)
- Last Synced: 2024-10-10T18:49:29.458Z (3 months ago)
- Language: Python
- Size: 156 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Description
Intuitive PNG library.
# Usage
## All-in-1
```python
from ipng import PNGpng = 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')
```