Re: Question about GdkColor



Hi,

yeajchao <yeajchao yahoo com cn> writes:

> In general,the RGB color mode ,the red or green or blue's value
> is from 0 to 255 But ,the GdkColor ,the value is from 0 to 65535
>
>    My question is ,how to map (0--255) to (0--65535)

 r = ((r << 8) | r);
 g = ((g << 8) | g);
 b = ((b << 8) | b);


Sven



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]