Is it possible to read image as text and send it over network? Is yes, then how can we do this?
feedback
|
|
You could base64 encode the image to produce a (text) string. Apache Commons Codec has a Base64 implementation that you can easily use:
| |||
feedback
|