new simple downscaling ideas

This commit is contained in:
2026-06-20 11:31:44 +03:00
parent 67ff655767
commit b75a8814a2
20 changed files with 395 additions and 65 deletions
+12
View File
@@ -0,0 +1,12 @@
package main
import "image/color"
func main() {
c1, c2 := color.Black,
color.Gray16Model.Convert(color.RGBA{})
println(c1.RGBA())
println(c2.RGBA())
println(c1 == c2)
}