Tagged Questions
2
votes
3answers
1k views
converting bytestream to RGB using libjpeg
I intercept a packet and extract the payload. This payload is compressed jpeg bytestream data (for example this data is assigned to unsigned char *payload). I know that if I have a FILE pointer, then ...
1
vote
2answers
2k views
how to convert 16-bit RGB Frame Buffer to a viewable format?
I'm working with someone else's code on a device which can put an image to /dev/fb/0 and show up on video out or send it over the network to a client application.
I don't have access to the old ...
1
vote
1answer
2k views
using jpeglib for JPEG compressed byte stream
I have JPEG compressed byte stream stored in a variable called "Image" and I want to convert this byte stream to RGB.
Eg: unsigned char *Image;
My question is: Is there any way to pass "Image" to ...
0
votes
1answer
293 views
Convert YCCK jpeg to RGB
I have a jpeg image with the colors encoded in the YCCK color space. I have already decoded it in C++ using libjpeg. How can I convert it to RGB?
Converting it to CMYK would also be useful for me, ...