vote up 2 vote down star

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

flag

1 Answer

vote up 4 vote down

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|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.