Hello All,
I want to use GIMP to pick a pixel colour using the colour picker tool. It will give the actual RGB values.
But when I plug these values into B4A to colour a background, they do not match anywhere near like in the graphics package.
Case "orgblueabstractcrop.jpg"
intRed = 51
intGreen = 47
intBlue = 48
Case "redabstractcrop.jpg"
intRed = 37
intGreen = 0
intBlue = 3
Case "toptile.jpg"
intRed = 65
intGreen = 67
intBlue = 109
End Select
lblCellColour.Color = Colors.ARGB(255, intRed, intGreen, intBlue)
Any idea why?
Thanks,
Azhar