I'm creating a android project, main feature is scan barcode.
I'm tried integrate with Zxing library into my project, and it's work fine.
However, it's seems not support scan barcode from an available image in gallery of android devices.
How i can do it ? or with other barcode library ?
Please help me.
Thanks for all answers.
I have a working sample on how to implement this, if you reading in 2016 here is how I did it:
You could use this class MultiFormatReader from ZXing library.
You have to get Gallery image in BitMap and convert it as this:
UPDATE1
To manipulate big image, please have a look at :
https://developer.android.com/training/articles/memory.html
https://developer.android.com/training/displaying-bitmaps/manage-memory.html
You could use this property android:largeHeap to increase heap size.