how to convert byte* into jpeg file in VC++
i am capturing Video samples and writing it as bmp files, but i want to write that video samples into jpeg file using MFC support in ATL COM.
|
how to convert byte* into jpeg file in VC++ i am capturing Video samples and writing it as bmp files, but i want to write that video samples into jpeg file using MFC support in ATL COM. |
||||
|
|
Use libjpg. Download from: http://www.ijg.org/ |
|||
|
|
|
From what it appears, you have the image data in a buffer pointed to by a Or, you need to explain you problem in more detail, preferably with some code. |
|||
|
|
|
You may also try to use CxImage C++ class to save your stills to JPEG-encoded file. There are some more Windows API oriented alternatives available on CodeProject, for instance CMiniJpegEncoder It is even possible to render JPEG to file from Windows bitmap using libgd library if compiled with libjpeg support. Here is code of small extension function gdImageTrueColorAttachBuffer I developed for this purpose some time ago:
I hope it helps. |
|||
|
|