I'm developing an android application capable of generating and reading qr codes, the application already encodes and decodes strings, but now I need to do this with images.
I have tried some ways to transform the image into an array of bytes and then convert it into a string in Base64 format, however the stirng gets very long.
I have tried to reduce the size of the image, and consequently to reduce the size of the string, but the image is very small, so far I have only been able to reduce the size of the image to less than 2KB, but it is very small. quality.
Is there any way to transform an image into a qrcode using the zxing library?
Thank you in advance!