Raja
Raja

Reputation: 6824

read strings from an image file in C

I'm trying to read only the strings from an image file. I was able to successfully read all the strings in the image file using java. I wrapped the inputstream into a filereaderstream which is again wrapped inside of a bufferereader. so now i can extract all the strings from the image file (like xmp tags and exif, tiff tags etc) ..

how do i accomplish the same thing using c.

Thanks

Upvotes: 0

Views: 477

Answers (1)

Aryabhatta
Aryabhatta

Reputation:

If you are using unix based OS, you can use the (unix, not C) command strings.

Upvotes: 1

Related Questions