Login  Register

8bit -> RGB

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

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
| More
Print post
Permalink

Re: 8bit -> RGB

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

Re: 8bit -> RGB

smfmazz
Thanks a lot.