16 lines
280 B
Go
16 lines
280 B
Go
package main
|
|
|
|
import (
|
|
"git.nkpl.cc/twocookedfaggots/imageutils/pkg/dithering"
|
|
"git.nkpl.cc/twocookedfaggots/imageutils/util"
|
|
)
|
|
|
|
func main() {
|
|
err := util.ProcessStdio(func(img image.Image) image.Image {
|
|
return dithering.Dithering{img}
|
|
})
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
}
|