https://github.com/fiskeben/pixlate
Pixelate photos
https://github.com/fiskeben/pixlate
golang image-processing
Last synced: 8 months ago
JSON representation
Pixelate photos
- Host: GitHub
- URL: https://github.com/fiskeben/pixlate
- Owner: fiskeben
- Created: 2018-07-06T21:03:01.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2021-11-26T23:27:22.000Z (over 4 years ago)
- Last Synced: 2025-04-26T15:02:30.165Z (about 1 year ago)
- Topics: golang, image-processing
- Language: Go
- Homepage:
- Size: 2.93 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pixlate
Pixelates photos.
Written in Go using only the standard library.
The program will take an image file and a block size as input
and write a new image file where blocks of pixels are averaged.
For example, passing a block size of 10 will create a new image
where the color of pixels in 10x10 blocks is averaged,
creating a pixelating effect.
Works with jpeg, gif, and png.
## Building
`go build .`
## Usage
`pixlate [-output ]`
## Limitations
Animated gifs will only have the first frame pixelated
and the rest of the frames removed.