func ColorToRGB(colorstr string) (red, green, blue int) { colorstr = strings.TrimPrefix(colorstr, "#") color64, err := strconv.ParseInt(colorstr, 16, 32) if err != nil { return } color := int(color64) return color >> 16, (color & 0x00FF00) >> 8, color & 0x0000FF }
//使用方法 fmt.Println(ColorToRGB("#003366"))
原文地址:https://www.cnblogs.com/chenyachao/p/10012791.html
时间: 2024-10-21 10:53:50