python-zxing icon indicating copy to clipboard operation
python-zxing copied to clipboard

python wrapper for the ZXing barcode library

Results 11 python-zxing issues
Sort by recently updated
recently updated
newest added

How do I detect multiple barcodes in a single image?

The instructions in the readme.md are incorrect (at least for me) http://central.maven.org is a non-existent domain. After a bit of searching I found https://repo1.maven.org seems to work.

As described in the README, reader.decode() takes image path as parameter: reader = zxing.BarCodeReader("/var/opt/zxing") barcode = reader.decode("/tmp/image.jpg") How to take bytes instead of image path? For example: with open('/tmp/image.jpg','rb') as...

The readme gives usage instructions that need maven. As I'm making a python application, it wouldn't be appropriate for me to ask my users to install maven and build maven...

I am getting this error when trying to run this code - it appears zxing is installed: computer$ java -cp javase/javase.jar:core/core.jar com.google.zxing.client.j2se.CommandLineRunner Decode barcode images using the ZXing library usage:...

Hello, I want to pass the image directly instead of the image path. img=cv2.imread('IMG_1736.JPG') barcode_reader(str(img) How can I do that

Added option to look for multiple barcodes on one image

You only need to run `mvn install` once from the `zxing` directory, and considering that working `zxing-X.jar` files already exist in the `core/target/` and `javase/target/` directories, I'm not sure the...

I have close to no knowledge about java and could not have python-zxing working. The `README.md` file states `Initializing the barcode reader, you have to tell it where to find...

latin1 allows us to handle ciphertext (tested with ASCON cipher). pure_barcode is required to get binary data universal_newlines was assuming all \r were \n, but with encrypted data it is...