rgb2hex.go 574 B

123456789101112131415161718192021222324252627282930313233343536
  1. package excel
  2. import "strconv"
  3. type RGB struct {
  4. Red,
  5. Green,
  6. Blue int64
  7. }
  8. type HEX struct {
  9. Str string
  10. }
  11. func t2x(t int64) string {
  12. result := strconv.FormatInt(t, 16)
  13. if len(result) == 1 {
  14. result = "0" + result
  15. }
  16. return result
  17. }
  18. func (color RGB) Rgb2Hex() HEX {
  19. r := t2x(color.Red)
  20. g := t2x(color.Green)
  21. b := t2x(color.Blue)
  22. return HEX{r + g + b}
  23. }
  24. func (color HEX) Hex2Rgb() RGB {
  25. r, _ := strconv.ParseInt(color.Str[:2], 16, 10)
  26. g, _ := strconv.ParseInt(color.Str[2:4], 16, 18)
  27. b, _ := strconv.ParseInt(color.Str[4:], 16, 10)
  28. return RGB{r, g, b}
  29. }