8bit -> RGB

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

8bit -> RGB

smfmazz
Hi all!
How can i convert a pixel 8 bit grey scale into RGB value?
Reply | Threaded
Open this post in threaded view
|

Re: 8bit -> RGB

Stephan Saalfeld
rgb = (((grey<<8)|grey)<<8)|grey
Reply | Threaded
Open this post in threaded view
|

Re: 8bit -> RGB

smfmazz
Thanks a lot.