How can you (in C/C++) add text to a jpeg-file using libjpeg?
I do not mean by editing pixels, but by adding text to the meta-data (like the png_set_text() libpng library for png files).
Never mind, found it:
char *text = "Hello, world!";
jpeg_write_marker(&cinfo, JPEG_COM, (const JOCTET *)text, strlen(text));
(just after jpeg_start_compress)
This is a collaboratively edited question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
about » faq »
tagged
asked
2 years ago
viewed
298 times
active