source: trunk/SRC/Colors/color24.pro @ 378

Last change on this file since 378 was 371, checked in by pinsard, 16 years ago

improvements of headers (alignments of IDL prompt in examples)

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 1.5 KB
Line 
1;+
2;
3; @file_comments
4; The purpose of this function is to convert a RGB color triple
5; into the equivalent 24-big long integer.
6; This routine was written to be used with routines like
7; or <pro>getcolor</pro>.
8;
9; @categories
10; Graphics, Color
11;
12; @param rgb_triple {in}{required}{type=byte, A three-element array}
13; A color triple. The values of the elements must be between 0 and 255.
14;
15; @returns {type=long integer}
16; a 24-bit long integer that is equivalent the input color.
17; The color is described in terms of a hexadecimal number (e.g., FF206A)
18; where the left two digits represent the blue color, the
19; middle two digits represent the green color, and the right
20; two digits represent the red color.
21;
22; @examples
23; To convert the color triple for the color YELLOW,
24; (255, 255, 0), to the hexadecimal value '00FFFF'x
25; or the decimal number 65535, type:
26;
27;   IDL> color = COLOR24([255, 255, 0])
28;
29; @history
30;       Written by:     David Fanning, 3 February 96.
31;
32; @version
33; $Id$
34;
35;-
36FUNCTION color24, rgb_triple
37;
38  compile_opt idl2, strictarrsubs
39;
40ON_ERROR, 1
41
42IF N_ELEMENTS(rgb_triple) NE 3 THEN $
43   ras= report('Argument must be a three-element vector.')
44
45IF MAX(rgb_triple) GT 255 OR MIN(rgb_triple) LT 0 THEN $
46   ras = report('Argument values must be in range of 0-255')
47
48base16 = [[1L, 16L], [256L, 4096L], [65536L, 1048576L]]
49
50num24bit = 0L
51
52FOR j=0,2 DO num24bit = num24bit + ((rgb_triple[j] MOD 16) * base16[0,j]) + $
53   (Fix(rgb_triple[j]/16) * base16[1,j])
54
55RETURN, num24bit
56END
Note: See TracBrowser for help on using the repository browser.