ruby-zbar
ruby-zbar copied to clipboard
Ruby bindings for the ZBar barcode recognition library
I am on Mac Monterrey and all of a sudden ZBar is not working any more. It still works on Linux and on Heroku. Did something on Mac break ZBar?
This seems related to some of the other JPEG issues that have been posted before: https://github.com/willglynn/ruby-zbar/issues/5 https://github.com/willglynn/ruby-zbar/issues/2 https://github.com/willglynn/ruby-zbar/issues/15 I'm seeing a seg fault when calling `from_jpeg` on `Zbar::Image` which causes...
I'm using the latest zbar from mercurial on sf.net. I can process a jpeg file using 'zbarimg bigstock-Barcode-18830351.jpg', but the following does not work: ``` ruby require 'zbar' jpeg =...
Hello developers. Thank you for creating the great product. I would like to share my knowledge on CentOS7. ### Summary ruby-zbar didn't work with libzbar built by EPEL. I needed...
I can read the QR codes from every image I have attempted to read so far except the attached one. I see it has some noise introduced by the printing/scanning...
In Image::from_pgm, the test for a valid pgm file is wrong. ``` image_data = string.gsub(/^(P5)\s([0-9]+)\s([0-9]+)\s([0-9]+)\s/, '') if $1 != 'P5' raise ArgumentError, "input must be a PGM file" end ```...