I have PhotoImpact and other photo/drawing/image editing software in which each uses RBG colors with numbers ranging from 0 to 255 to describe the colors. Yet, Blender uses 0.000 to 1.000.
Anyone know a way to convert rom the integer colors to the Blender real number colors?
RGB runs from 0 to 255 for each of red, green, and blue, with zero meaning none and 255 meaning full. Blender uses RGB from 0 to 1. Physically, a 1 in the blender system must mean the same thing as 255 in the integer system, and zeros mean the same thing. Doing a type of ‘unit conversion’, we find it’s not really that hard at all:
x int units * ( 1 blend units / 255 int units ) = y blend units
So, as you can see, all you have to do is divide the integer by 255.