vote up 0 vote down star
1

If I am using .Net and SQL Server 2008, what is the best way for me to store a color in the database, should I use ToString or convert it to an integer, or something else?

Edit:

All I want from the colour is to be able to retrieve it and draw something on the screen in the specified colour. I don't need to be able to query against it.

flag

6 Answers

vote up 8 vote down check

How are the colors stored natively?

If you're just using 0xRRGGBB format, you may as well store it as an integer in the database, and re-hexify it when you SELECT (for readability).

link|flag
vote up 1 vote down

If you are storing the System.Drawing.Color, you need to store 4 bytes that represent the alpha and the 3 color channels. You can use a int data type.

If you are storing the System.Windows.Media.Color (from WPF), there are two possibilities depending on the usage you are using:

  1. If you are only using ARGB colors, store as a int data type.
  2. If you are using the ScRGB format, you need to store 4 float (single) values. I suggest two way of storing it:
    1. A user-defined type with 4 float fields.
    2. A varchar (length depend on the precision) and storing
      color.ToString(CultureInfo.InvariantCulture)

link|flag
vote up 2 vote down

Well, I'd store them as six digit hex codes. That opens up the interesting possibility of actually searching for colors between other colors. If you really want to make it powerful, keep the R, G, B hex numbers in three columns. That lets you find colors which contain so much red, or ones that are similar to another color (sort by average difference of the three values).

link|flag
Was about to suggest that myself. HEX-colors is the way to go, imo. – roosteronacid Sep 10 at 17:36
vote up 4 vote down

Color can be surprisingly tricky on some industries like digital cameras, desktop publishing, sanners and other. Most programmers associate color with the 24 bit color (RGB usually), some associate it with the 32 bit (RGBA). The few that work in industries like DTP that make heavy use of color have a richer set of terms that includes color correction, color space and so on and so forth. So what exactly do you need to store?

  • Do you need to store a single format that is not going to change?
  • Do you need to store multiple formats and know what format is actually stored (RGB vs. RGBA vs. CMY vs. HSV etv) ? Note that even something apparently as simple as RGB actually can be Adobe RGB or sRGB.
  • Do you need to store color space and correction? Note often the RGB color has no meaning w/o proper color management.
  • Do you need to store a simple text description ('red', 'lime', 'teal' etc) ?
  • Do you need to store the 'web' color (ie. RGB or RGBA as hex) ?
link|flag
vote up 8 vote down

How to store information in a database depends on how you intend to use and access it. There's no saying what the best way to store it is without knowing how you'll use it.

link|flag
wow Steve Kass. I haven't seen your name in 5 years! – esabine Sep 10 at 17:39
+1 Ofcourse, as with any data. A query that looks for all pixels with green between 0x40 and 0x50 would benefit from storage into separate R, G and B components (indexed each). One that asks for the "transparent pixels" in 1 bil. records would need the A channel separate. Or some queries would ask for 'Brightness' and need HSV/HSL format. – Remus Rusanu Sep 10 at 18:00
vote up 1 vote down

Are you using the colors to style something or are you storing how many blue items you have?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.