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

https://github.com/girishg4t/image-processor

Manipulate digital images in various ways, such as enhancing, filtering, or analyzing them
https://github.com/girishg4t/image-processor

Last synced: about 1 month ago
JSON representation

Manipulate digital images in various ways, such as enhancing, filtering, or analyzing them

Awesome Lists containing this project

README

        

## Image processor

`cargo run infile.png outfile.png blur 2.5 invert rotate 180 brighten 10`

...then your program would:
- read infile.png
- apply a blur of 2.5
- invert the colors
- rotate the image 180 degrees clockwise
- brighten the image by 10
- and write the result to outfile.png