Hi,

yeajchao <[EMAIL PROTECTED]> 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
_______________________________________________
gtk-list mailing list
gtk-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-list

Reply via email to