@@ -33,7 +33,7 @@ |
||
33 | 33 | /** |
34 | 34 | * @param \chillerlan\QRCode\BitBuffer $buffer |
35 | 35 | */ |
36 | - public function write(BitBuffer &$buffer){ |
|
36 | + public function write(BitBuffer&$buffer){ |
|
37 | 37 | $i = 0; |
38 | 38 | |
39 | 39 | while($i + 2 < $this->dataLength){ |
@@ -22,7 +22,7 @@ |
||
22 | 22 | /** |
23 | 23 | * @param \chillerlan\QRCode\BitBuffer $buffer |
24 | 24 | */ |
25 | - public function write(BitBuffer &$buffer); |
|
25 | + public function write(BitBuffer&$buffer); |
|
26 | 26 | |
27 | 27 | /** |
28 | 28 | * @param $type |
@@ -76,7 +76,7 @@ |
||
76 | 76 | } |
77 | 77 | |
78 | 78 | for($i = 8; $i < 256; $i++){ |
79 | - $this->EXP_TABLE[$i] = $this->EXP_TABLE[$i - 4] ^ $this->EXP_TABLE[$i - 5] ^ $this->EXP_TABLE[$i - 6] ^ $this->EXP_TABLE[$i - 8]; |
|
79 | + $this->EXP_TABLE[$i] = $this->EXP_TABLE[$i - 4]^$this->EXP_TABLE[$i - 5]^$this->EXP_TABLE[$i - 6]^$this->EXP_TABLE[$i - 8]; |
|
80 | 80 | } |
81 | 81 | |
82 | 82 | for($i = 0; $i < 255; $i++){ |
@@ -25,16 +25,16 @@ discard block |
||
25 | 25 | ]; |
26 | 26 | |
27 | 27 | const MAX_BITS = [ |
28 | - QRCode::TYPE_01 => [ 128, 152, 72, 104], |
|
29 | - QRCode::TYPE_02 => [ 224, 272, 128, 176], |
|
30 | - QRCode::TYPE_03 => [ 352, 440, 208, 272], |
|
31 | - QRCode::TYPE_04 => [ 512, 640, 288, 384], |
|
32 | - QRCode::TYPE_05 => [ 688, 864, 368, 496], |
|
33 | - QRCode::TYPE_06 => [ 864, 1088, 480, 608], |
|
34 | - QRCode::TYPE_07 => [ 992, 1248, 528, 704], |
|
35 | - QRCode::TYPE_08 => [1232, 1552, 688, 880], |
|
36 | - QRCode::TYPE_09 => [1456, 1856, 800, 1056], |
|
37 | - QRCode::TYPE_10 => [1728, 2192, 976, 1232], |
|
28 | + QRCode::TYPE_01 => [128, 152, 72, 104], |
|
29 | + QRCode::TYPE_02 => [224, 272, 128, 176], |
|
30 | + QRCode::TYPE_03 => [352, 440, 208, 272], |
|
31 | + QRCode::TYPE_04 => [512, 640, 288, 384], |
|
32 | + QRCode::TYPE_05 => [688, 864, 368, 496], |
|
33 | + QRCode::TYPE_06 => [864, 1088, 480, 608], |
|
34 | + QRCode::TYPE_07 => [992, 1248, 528, 704], |
|
35 | + QRCode::TYPE_08 => [1232, 1552, 688, 880], |
|
36 | + QRCode::TYPE_09 => [1456, 1856, 800, 1056], |
|
37 | + QRCode::TYPE_10 => [1728, 2192, 976, 1232], |
|
38 | 38 | ]; |
39 | 39 | |
40 | 40 | const MODE_NUMBER = 1 << 0; |
@@ -66,16 +66,16 @@ discard block |
||
66 | 66 | const PAD1 = 0x11; |
67 | 67 | |
68 | 68 | const MAX_LENGTH = [ |
69 | - [[ 41, 25, 17, 10], [ 34, 20, 14, 8], [ 27, 16, 11, 7], [ 17, 10, 7, 4]], |
|
70 | - [[ 77, 47, 32, 20], [ 63, 38, 26, 16], [ 48, 29, 20, 12], [ 34, 20, 14, 8]], |
|
71 | - [[127, 77, 53, 32], [101, 61, 42, 26], [ 77, 47, 32, 20], [ 58, 35, 24, 15]], |
|
72 | - [[187, 114, 78, 48], [149, 90, 62, 38], [111, 67, 46, 28], [ 82, 50, 34, 21]], |
|
73 | - [[255, 154, 106, 65], [202, 122, 84, 52], [144, 87, 60, 37], [106, 64, 44, 27]], |
|
74 | - [[322, 195, 134, 82], [255, 154, 106, 65], [178, 108, 74, 45], [139, 84, 58, 36]], |
|
75 | - [[370, 224, 154, 95], [293, 178, 122, 75], [207, 125, 86, 53], [154, 93, 64, 39]], |
|
76 | - [[461, 279, 192, 118], [365, 221, 152, 93], [259, 157, 108, 66], [202, 122, 84, 52]], |
|
77 | - [[552, 335, 230, 141], [432, 262, 180, 111], [312, 189, 130, 80], [235, 143, 98, 60]], |
|
78 | - [[652, 395, 271, 167], [513, 311, 213, 131], [364, 221, 151, 93], [288, 174, 119, 74]], |
|
69 | + [[41, 25, 17, 10], [34, 20, 14, 8], [27, 16, 11, 7], [17, 10, 7, 4]], |
|
70 | + [[77, 47, 32, 20], [63, 38, 26, 16], [48, 29, 20, 12], [34, 20, 14, 8]], |
|
71 | + [[127, 77, 53, 32], [101, 61, 42, 26], [77, 47, 32, 20], [58, 35, 24, 15]], |
|
72 | + [[187, 114, 78, 48], [149, 90, 62, 38], [111, 67, 46, 28], [82, 50, 34, 21]], |
|
73 | + [[255, 154, 106, 65], [202, 122, 84, 52], [144, 87, 60, 37], [106, 64, 44, 27]], |
|
74 | + [[322, 195, 134, 82], [255, 154, 106, 65], [178, 108, 74, 45], [139, 84, 58, 36]], |
|
75 | + [[370, 224, 154, 95], [293, 178, 122, 75], [207, 125, 86, 53], [154, 93, 64, 39]], |
|
76 | + [[461, 279, 192, 118], [365, 221, 152, 93], [259, 157, 108, 66], [202, 122, 84, 52]], |
|
77 | + [[552, 335, 230, 141], [432, 262, 180, 111], [312, 189, 130, 80], [235, 143, 98, 60]], |
|
78 | + [[652, 395, 271, 167], [513, 311, 213, 131], [364, 221, 151, 93], [288, 174, 119, 74]], |
|
79 | 79 | ]; |
80 | 80 | |
81 | 81 | const BLOCK_TABLE = [ |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | [1, 26, 19], // L |
84 | 84 | [1, 26, 16], // M |
85 | 85 | [1, 26, 13], // Q |
86 | - [1, 26, 9], // H |
|
86 | + [1, 26, 9], // H |
|
87 | 87 | // 2 |
88 | 88 | [1, 44, 34], |
89 | 89 | [1, 44, 28], |
@@ -96,14 +96,14 @@ discard block |
||
96 | 96 | [2, 35, 13], |
97 | 97 | // 4 |
98 | 98 | [1, 100, 80], |
99 | - [2, 50, 32], |
|
100 | - [2, 50, 24], |
|
101 | - [4, 25, 9], |
|
99 | + [2, 50, 32], |
|
100 | + [2, 50, 24], |
|
101 | + [4, 25, 9], |
|
102 | 102 | // 5 |
103 | 103 | [1, 134, 108], |
104 | - [2, 67, 43], |
|
105 | - [2, 33, 15, 2, 34, 16], |
|
106 | - [2, 33, 11, 2, 34, 12], |
|
104 | + [2, 67, 43], |
|
105 | + [2, 33, 15, 2, 34, 16], |
|
106 | + [2, 33, 11, 2, 34, 12], |
|
107 | 107 | // 6 |
108 | 108 | [2, 86, 68], |
109 | 109 | [4, 43, 27], |
@@ -116,14 +116,14 @@ discard block |
||
116 | 116 | [4, 39, 13, 1, 40, 14], |
117 | 117 | // 8 |
118 | 118 | [2, 121, 97], |
119 | - [2, 60, 38, 2, 61, 39], |
|
120 | - [4, 40, 18, 2, 41, 19], |
|
121 | - [4, 40, 14, 2, 41, 15], |
|
119 | + [2, 60, 38, 2, 61, 39], |
|
120 | + [4, 40, 18, 2, 41, 19], |
|
121 | + [4, 40, 14, 2, 41, 15], |
|
122 | 122 | // 9 |
123 | 123 | [2, 146, 116], |
124 | - [3, 58, 36, 2, 59, 37], |
|
125 | - [4, 36, 16, 4, 37, 17], |
|
126 | - [4, 36, 12, 4, 37, 13], |
|
124 | + [3, 58, 36, 2, 59, 37], |
|
125 | + [4, 36, 16, 4, 37, 17], |
|
126 | + [4, 36, 12, 4, 37, 13], |
|
127 | 127 | // 10 |
128 | 128 | [2, 86, 68, 2, 87, 69], |
129 | 129 | [4, 69, 43, 1, 70, 44], |
@@ -33,7 +33,7 @@ |
||
33 | 33 | /** |
34 | 34 | * @param \chillerlan\QRCode\BitBuffer $buffer |
35 | 35 | */ |
36 | - public function write(BitBuffer &$buffer){ |
|
36 | + public function write(BitBuffer&$buffer){ |
|
37 | 37 | $i = 0; |
38 | 38 | |
39 | 39 | while($i + 2 < $this->dataLength){ |
@@ -33,7 +33,7 @@ |
||
33 | 33 | /** |
34 | 34 | * @param \chillerlan\QRCode\BitBuffer $buffer |
35 | 35 | */ |
36 | - public function write(BitBuffer &$buffer){ |
|
36 | + public function write(BitBuffer&$buffer){ |
|
37 | 37 | $i = 0; |
38 | 38 | |
39 | 39 | while($i + 2 < $this->dataLength){ |
@@ -33,7 +33,7 @@ |
||
33 | 33 | /** |
34 | 34 | * @param \chillerlan\QRCode\BitBuffer $buffer |
35 | 35 | */ |
36 | - public function write(BitBuffer &$buffer){ |
|
36 | + public function write(BitBuffer&$buffer){ |
|
37 | 37 | $i = 0; |
38 | 38 | |
39 | 39 | while($i + 2 < $this->dataLength){ |
@@ -77,8 +77,8 @@ discard block |
||
77 | 77 | foreach($row as $c => $pixel){ |
78 | 78 | if($pixel){ |
79 | 79 | imagefilledrectangle($image, |
80 | - $this->options->marginSize + $c * $this->options->pixelSize, |
|
81 | - $this->options->marginSize + $r * $this->options->pixelSize, |
|
80 | + $this->options->marginSize + $c * $this->options->pixelSize, |
|
81 | + $this->options->marginSize + $r * $this->options->pixelSize, |
|
82 | 82 | $this->options->marginSize + ($c + 1) * $this->options->pixelSize - 1, |
83 | 83 | $this->options->marginSize + ($r + 1) * $this->options->pixelSize - 1, |
84 | 84 | $foreground); |
@@ -89,9 +89,9 @@ discard block |
||
89 | 89 | ob_start(); |
90 | 90 | |
91 | 91 | switch($this->options->type){ |
92 | - case QRCode::OUTPUT_IMAGE_PNG: imagepng ($image, $this->options->cachefile, (int)$this->options->pngCompression); break; |
|
92 | + case QRCode::OUTPUT_IMAGE_PNG: imagepng($image, $this->options->cachefile, (int)$this->options->pngCompression); break; |
|
93 | 93 | case QRCode::OUTPUT_IMAGE_JPG: imagejpeg($image, $this->options->cachefile, (int)$this->options->jpegQuality); break; |
94 | - case QRCode::OUTPUT_IMAGE_GIF: imagegif ($image, $this->options->cachefile); break; /** Actually, it's pronounced "DJIFF". *hides* */ |
|
94 | + case QRCode::OUTPUT_IMAGE_GIF: imagegif($image, $this->options->cachefile); break; /** Actually, it's pronounced "DJIFF". *hides* */ |
|
95 | 95 | } |
96 | 96 | |
97 | 97 | $imageData = ob_get_contents(); |
@@ -49,7 +49,6 @@ discard block |
||
49 | 49 | if($this->options->type === QRCode::OUTPUT_STRING_JSON){ |
50 | 50 | return json_encode($this->matrix); |
51 | 51 | } |
52 | - |
|
53 | 52 | else if($this->options->type === QRCode::OUTPUT_STRING_TEXT){ |
54 | 53 | $text = ''; |
55 | 54 | |
@@ -65,7 +64,6 @@ discard block |
||
65 | 64 | |
66 | 65 | return $text; |
67 | 66 | } |
68 | - |
|
69 | 67 | else if($this->options->type === QRCode::OUTPUT_STRING_HTML){ |
70 | 68 | $html = ''; |
71 | 69 |