Reputation: 6824
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
Reputation:
If you are using unix based OS, you can use the (unix, not C) command strings.
Upvotes: 1