Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 6 Next »

How is the color value specified in the database table?

Answer: Each color has a designated RGB value. The integer value (long) may be calculated for the color parameter, then specified in the database table, through the following formula:

  • Color parameter = R + G * 256 + B * 2562

    where R, G, and B may be 0 - 255

For example, blue has a RGB value of (0, 0, 255), therefore its color parameter is 0 + 0 * 256 + 255 * 2562 = 16711680.

  • No labels