Skip to content

Instantly share code, notes, and snippets.

@railscard
Created January 13, 2014 00:39
Show Gist options
  • Save railscard/8392793 to your computer and use it in GitHub Desktop.
Save railscard/8392793 to your computer and use it in GitHub Desktop.
imgColorAt := img.At(x, y)
red, green, blue, alpha := imgColorAt.RGBA()
rgbaColor := color.RGBA{uint8(red >> 8), uint8(green >> 8), uint8(blue >> 8), uint8(alpha >> 8)}
fmt.Println(imgColorAt) // Will print {255 255 255 0}
fmt.Println(rgbaColor) // Will be {0 0 0 0}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment