Last updated 3 years ago
Applies a pixelation effect to the image.
size
int
Size of pixels.
The instance of *imgo.Image .
*imgo.Image
package main import ( "github.com/fishtailstudio/imgo" ) func main() { imgo.Load("gopher.png"). Pixelate(5). Save("out.png") }