I am trying to scan barcodes after taking a picture of them using the Camera Activity. However the byte[] data from onPictureTaken() is different from onPreviewFrame() (the one used in the examples). Is there any way to convert the byte[] data from onPictureTaken() so that the imagescanner can pick up the barcode?
Image barcode = new Image(size.width, size.height, "Y800");
barcode.setData(data);
int result = scanner.scanImage(barcode);
The main problem is that in the above code if I use the byte[] data from onPictureTaken then result is 0, but it should be 1.
Thanks in advance.
Here you have example convert. Try it and tell me if works:
Here is more info