fixed bug with reminder bits in some qr versions
This commit is contained in:
parent
e9d2d310c8
commit
4c758a440a
|
@ -109,14 +109,18 @@ func render(data []byte, vi *versionInfo) *qrcode {
|
||||||
var curBitNo int = 0
|
var curBitNo int = 0
|
||||||
|
|
||||||
for pos := range itterateModules(occupied) {
|
for pos := range itterateModules(occupied) {
|
||||||
|
var curBit bool
|
||||||
if curBitNo < len(data)*8 {
|
if curBitNo < len(data)*8 {
|
||||||
curBit := ((data[curBitNo/8] >> uint(7-(curBitNo%8))) & 1) == 1
|
curBit = ((data[curBitNo/8] >> uint(7-(curBitNo%8))) & 1) == 1
|
||||||
|
} else {
|
||||||
|
curBit = false
|
||||||
|
}
|
||||||
|
|
||||||
for i := 0; i < 8; i++ {
|
for i := 0; i < 8; i++ {
|
||||||
setMasked(pos.X, pos.Y, curBit, i, results[i].Set)
|
setMasked(pos.X, pos.Y, curBit, i, results[i].Set)
|
||||||
}
|
}
|
||||||
curBitNo += 1
|
curBitNo += 1
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
lowestPenalty := ^uint(0)
|
lowestPenalty := ^uint(0)
|
||||||
lowestPenaltyIdx := -1
|
lowestPenaltyIdx := -1
|
||||||
|
|
Loading…
Reference in New Issue