dithering done :)

This commit is contained in:
2026-03-04 21:44:20 +03:00
parent e5c0537f2b
commit b9808c8150
7 changed files with 102 additions and 97 deletions

15
pkg/dithering/cmd/main.go Normal file
View File

@@ -0,0 +1,15 @@
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)
}
}