Issue 412

git-svn-id: https://zxing.googlecode.com/svn/trunk@1376 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
srowen@gmail.com 2010-05-20 10:50:34 +00:00
parent cd06f524d8
commit a189e6c00c

View file

@ -118,6 +118,9 @@ public class QRCodeReader implements Reader {
}
int moduleSize = x - leftTopBlack[0];
if (moduleSize == 0) {
throw NotFoundException.getNotFoundInstance();
}
// And now find where the rightmost black module on the first row ends
int rowEndOfSymbol = width - 1;
@ -159,4 +162,4 @@ public class QRCodeReader implements Reader {
return bits;
}
}
}