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).

link|improve this question
feedback

1 Answer

Never mind, found it:

char *text = "Hello, world!";

jpeg_write_marker(&cinfo, JPEG_COM, (const JOCTET *)text, strlen(text));

(just after jpeg_start_compress)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown