Android Zbar barcode scan using PictureCallback instead of PreviewCallback

985 Views Asked by At

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.

1

There are 1 best solutions below

2
On

Here you have example convert. Try it and tell me if works:

 Image barcode = new Image(size.width, size.height, "NV21");
 barcode.setData(data);   
 barcode = barcode.convert("Y800");

Here is more info