https://github.com/pvlbzn/butcher
Image re-sizer for Android graphics which aware of output quality
https://github.com/pvlbzn/butcher
go golang image-processing python
Last synced: 3 months ago
JSON representation
Image re-sizer for Android graphics which aware of output quality
- Host: GitHub
- URL: https://github.com/pvlbzn/butcher
- Owner: pvlbzn
- Created: 2016-03-08T00:26:42.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-05-25T08:32:25.000Z (over 9 years ago)
- Last Synced: 2025-03-01T02:41:25.544Z (8 months ago)
- Topics: go, golang, image-processing, python
- Language: Python
- Homepage:
- Size: 1.25 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Butcher
Butcher is an image cutter dedicated to prepare graphics for Android platform.
### Structure
This repository contains two library-like implemintations: Python, Go. They produces almost the similar result. Almost because Python's uses `PIL`, Golang's uses `nfnt/resize` realization, thus results may vary.```
.
├── README.md
├── gobutcher
│ ├── butcher.go
│ └── butcher_test.go
└── pybutcher
├── butcher.py
└── test_butcher.py
```### gobutcher
```
.
├── butcher.go
└── butcher_test.go
```Go's implementation contains library and tests for it. All tests are passing.
```
$ go testPASS
ok github.com/pvlbzn/butcher/gobutcher 0.119s
```### pybutcher
```
.
├── butcher.py
└── test_butcher.py
```Python's implementation contains library and tests for it. All tests are passing.
```
$ py.test=========================== 3 passed in 0.13 seconds ===========================
```### Status
Project is ready to use, works well, produces good results. However it lacks any CLI or interface, these only libraries. May be I'll write CLIs, but may be not, so you are very welcome to fork.
### TODO
- Add CLI