-
Notifications
You must be signed in to change notification settings - Fork 3
/
color.go
51 lines (39 loc) · 846 Bytes
/
color.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package gdiplus
type Color struct {
Argb ARGB
}
func MakeARGB(a, r, g, b byte) ARGB {
return ((ARGB(b) << BlueShift) | (ARGB(g) << GreenShift) | (ARGB(r) << RedShift) | (ARGB(a) << AlphaShift))
}
func NewColor(r, g, b, a byte) *Color {
c := &Color{}
c.Argb = MakeARGB(a, r, g, b)
return c
}
func (c *Color) GetAlpha() byte {
return byte(c.Argb >> AlphaShift)
}
func (c *Color) GetA() byte {
return c.GetAlpha()
}
func (c *Color) GetRed() byte {
return byte(c.Argb >> RedShift)
}
func (c *Color) GetR() byte {
return c.GetRed()
}
func (c *Color) GetGreen() byte {
return byte(c.Argb >> GreenShift)
}
func (c *Color) GetG() byte {
return c.GetGreen()
}
func (c *Color) GetBlue() byte {
return byte(c.Argb >> BlueShift)
}
func (c *Color) GetB() byte {
return c.GetBlue()
}
func (c *Color) GetValue() ARGB {
return c.Argb
}