Compare commits

...

3 Commits

Author SHA1 Message Date
6bfa97e6aa Fix color.Premultiply 2024-09-12 03:13:35 -04:00
f647b544e2 Add tests for some color functions 2024-09-12 03:13:15 -04:00
1911987c59 Downgrade to go1.20 2024-09-12 03:12:43 -04:00
3 changed files with 21 additions and 4 deletions

2
go.mod
View File

@ -1,3 +1,3 @@
module git.tebibyte.media/sashakoshka/goutil
go 1.21.0
go 1.20.0

View File

@ -22,9 +22,9 @@ func ToRGBA (c color.Color) color.RGBA {
// Premultiply applies alpha-premultiplication that colors must apply as per
// color.Color.RGBA. This is an intrinsically lossy proccess.
func Premultiply (ur, ug, ub, ua uint32) (r, g, b, a uint32) {
return (ur * a) / 0xFFFF,
(ug * a) / 0xFFFF,
(ub * a) / 0xFFFF,
return (ur * ua) / 0xFFFF,
(ug * ua) / 0xFFFF,
(ub * ua) / 0xFFFF,
ua
}

17
image/color/color_test.go Normal file
View File

@ -0,0 +1,17 @@
package ucolor
import "testing"
func TestPremultiply (test *testing.T) {
r, g, b, a := Premultiply(0xFFFF, 0xFFFF, 0xFFFF, 0x8888)
if r != 0x8888 || g != 0x8888 || b != 0x8888 || a != 0x8888 {
test.Fatalf("wrong value: %08x %08x %08x %08x", r, g, b, a)
}
}
func TestUnpremultiply (test *testing.T) {
r, g, b, a := Unpremultiply(0x8888, 0x8888, 0x8888, 0x8888)
if r != 0xFFFF || g != 0xFFFF || b != 0xFFFF || a != 0x8888 {
test.Fatalf("wrong value: %08x %08x %08x %08x", r, g, b, a)
}
}