mirror of
https://github.com/chillerlan/php-qrcode.git
synced 2026-08-31 12:38:22 +00:00
🚿
This commit is contained in:
@@ -339,7 +339,7 @@ final class Binarizer{
|
||||
for($j = 0, $o = $yoffset * $width + $xoffset; $j < self::BLOCK_SIZE; $j++, $o += $width){
|
||||
for($i = 0; $i < self::BLOCK_SIZE; $i++){
|
||||
// Comparison needs to be <= so that black == 0 pixels are black even if the threshold is 0.
|
||||
if(($luminances[$o + $i] & 0xff) <= $average){
|
||||
if(((int)($luminances[$o + $i]) & 0xff) <= $average){
|
||||
$matrix->set($xoffset + $i, $yoffset + $j);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user