If I enter a RGB values like 194.5,193.5, 192.5, the result color is the same as the values 194, 193, 192. Is there any option that color will be changed as light or thick based on the decimal values too?
Does RGB supports decimal values?
3.9k Views Asked by Swetha reddy At
2
RGB values are composed of three 8-bit integers (
byte), one each for red, blue and green with value from 0 to 255. There is also a fourth 8-bit integer that is used for opacity. This also has values from 0 to 255. This is also referred to as the "alpha value". There are no fractional parts.