Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/unixb0y/2bpp_to_image_py
Convert 2BPP data from GameBoy to images quickly
https://github.com/unixb0y/2bpp_to_image_py
Last synced: about 1 month ago
JSON representation
Convert 2BPP data from GameBoy to images quickly
- Host: GitHub
- URL: https://github.com/unixb0y/2bpp_to_image_py
- Owner: unixb0y
- Created: 2023-11-02T12:35:18.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-02T20:34:42.000Z (about 1 year ago)
- Last Synced: 2023-11-02T21:30:19.467Z (about 1 year ago)
- Language: Python
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GameBoy 2BPP to image converter
Outputs jpg / png / bmp with same filename representing the contents of the hex file in GameBoy 2BPP Graphics Format.
Usage:
```
$ python3 2bpp_to_image.py mew.hex jpg
```Dependencies: Python Pillow
```
$ virtualenv -p python3 venv
$ source venv/bin/activate
$ pip install Pillow
```