From d80f849f4ac9aad03f08f3cc044848575d3fbebc Mon Sep 17 00:00:00 2001 From: "Brock A. Martin" Date: Sat, 23 Jul 2016 15:06:23 -0500 Subject: [PATCH] Adding suggested decode line as comment (I don't think the other one works always anyway) --- qr2asc.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/qr2asc.sh b/qr2asc.sh index 1aeb7ca..fe5ae0a 100755 --- a/qr2asc.sh +++ b/qr2asc.sh @@ -44,6 +44,10 @@ for img in "$@"; do asc_key="${tmp_file}.${index}" echo "decoding ${img}" chunk=$( zbarimg --raw ${img} 2>/dev/null | perl -p -e 'chomp if eof' ) + # Please use this next line instead of teh one above if zbarimg does + # not decode the qr code properly in tests + # (zbarimg needs to be told it is being given a qr code to decode) + #chunk=$( zbarimg --raw --set disable --set qrcode.enable ${img} 2>/dev/null ) if [ $? -ne 0 ]; then echo "failed to decode QR image" exit 2