C:\xampp2_not used\phpMyAdmin\vendor\bacon\bacon-qr-code\src\BaconQrCode\Encoder\Encoder.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
<?php
/**
 * BaconQrCode
 *
 * @link      http://github.com/Bacon/BaconQrCode For the canonical source repository
 * @copyright 2013 Ben 'DASPRiD' Scholzen
 * @license   http://opensource.org/licenses/BSD-2-Clause Simplified BSD License
 */

namespace BaconQrCode\Encoder;

use 
BaconQrCode\Common\BitArray;
use 
BaconQrCode\Common\CharacterSetEci;
use 
BaconQrCode\Common\ErrorCorrectionLevel;
use 
BaconQrCode\Common\Mode;
use 
BaconQrCode\Common\ReedSolomonCodec;
use 
BaconQrCode\Common\Version;
use 
BaconQrCode\Exception;
use 
SplFixedArray;

/**
 * Encoder.
 */
class Encoder
{
    
/**
     * Default byte encoding.
     */
    
const DEFAULT_BYTE_MODE_ECODING 'ISO-8859-1';

    
/**
     * The original table is defined in the table 5 of JISX0510:2004 (p.19).
     *
     * @var array
     */
    
protected static $alphanumericTable = array(
        -
1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,  // 0x00-0x0f
        
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,  // 0x10-0x1f
        
36, -1, -1, -13738, -1, -1, -1, -13940, -1414243,  // 0x20-0x2f
        
0,   1,  2,  3,  4,  5,  6,  7,  8,  944, -1, -1, -1, -1, -1,  // 0x30-0x3f
        
-1101112131415161718192021222324,  // 0x40-0x4f
        
2526272829303132333435, -1, -1, -1, -1, -1,  // 0x50-0x5f
    
);

    
/**
     * Codec cache.
     *
     * @var array
     */
    
protected static $codecs = array();

    
/**
     * Encodes "content" with the error correction level "ecLevel".
     *
     * @param  string               $content
     * @param  ErrorCorrectionLevel $ecLevel
     * @param  ?                    $hints
     * @return QrCode
     */
    
public static function encode($contentErrorCorrectionLevel $ecLevel$encoding self::DEFAULT_BYTE_MODE_ECODING)
    {
        
// Pick an encoding mode appropriate for the content. Note that this
        // will not attempt to use multiple modes / segments even if that were
        // more efficient. Would be nice.
        
$mode self::chooseMode($content$encoding);

        
// This will store the header information, like mode and length, as well
        // as "header" segments like an ECI segment.
        
$headerBits = new BitArray();

        
// Append ECI segment if applicable
        
if ($mode->get() === Mode::BYTE && $encoding !== self::DEFAULT_BYTE_MODE_ECODING) {
            
$eci CharacterSetEci::getCharacterSetEciByName($encoding);

            if (
$eci !== null) {
                
self::appendEci($eci$headerBits);
            }
        }

        
// (With ECI in place,) Write the mode marker
        
self::appendModeInfo($mode$headerBits);

        
// Collect data within the main segment, separately, to count its size
        // if needed. Don't add it to main payload yet.
        
$dataBits = new BitArray();
        
self::appendBytes($content$mode$dataBits$encoding);

        
// Hard part: need to know version to know how many bits length takes.
        // But need to know how many bits it takes to know version. First we
        // take a guess at version by assuming version will be the minimum, 1:
        
$provisionalBitsNeeded $headerBits->getSize()
                               + 
$mode->getCharacterCountBits(Version::getVersionForNumber(1))
                               + 
$dataBits->getSize();
        
$provisionalVersion self::chooseVersion($provisionalBitsNeeded$ecLevel);

        
// Use that guess to calculate the right version. I am still not sure
        // this works in 100% of cases.
        
$bitsNeeded $headerBits->getSize()
                    + 
$mode->getCharacterCountBits($provisionalVersion)
                    + 
$dataBits->getSize();
        
$version self::chooseVersion($bitsNeeded$ecLevel);

        
$headerAndDataBits = new BitArray();
        
$headerAndDataBits->appendBitArray($headerBits);

        
// Find "length" of main segment and write it.
        
$numLetters = ($mode->get() === Mode::BYTE $dataBits->getSizeInBytes() : strlen($content));
        
self::appendLengthInfo($numLetters$version$mode$headerAndDataBits);

        
// Put data together into the overall payload.
        
$headerAndDataBits->appendBitArray($dataBits);
        
$ecBlocks     $version->getEcBlocksForLevel($ecLevel);
        
$numDataBytes $version->getTotalCodewords() - $ecBlocks->getTotalEcCodewords();

        
// Terminate the bits properly.
        
self::terminateBits($numDataBytes$headerAndDataBits);

        
// Interleave data bits with error correction code.
        
$finalBits self::interleaveWithEcBytes(
            
$headerAndDataBits,
            
$version->getTotalCodewords(),
            
$numDataBytes,
            
$ecBlocks->getNumBlocks()
        );

        
$qrCode = new QrCode();
        
$qrCode->setErrorCorrectionLevel($ecLevel);
        
$qrCode->setMode($mode);
        
$qrCode->setVersion($version);

        
// Choose the mask pattern and set to "qrCode".
        
$dimension   $version->getDimensionForVersion();
        
$matrix      = new ByteMatrix($dimension$dimension);
        
$maskPattern self::chooseMaskPattern($finalBits$ecLevel$version$matrix);
        
$qrCode->setMaskPattern($maskPattern);

        
// Build the matrix and set it to "qrCode".
        
MatrixUtil::buildMatrix($finalBits$ecLevel$version$maskPattern$matrix);
        
$qrCode->setMatrix($matrix);

        return 
$qrCode;
    }

    
/**
     * Gets the alphanumeric code for a byte.
     *
     * @param  string|integer $code
     * @return integer
     */
    
protected static function getAlphanumericCode($code)
    {
        
$code = (is_string($code) ? ord($code) : $code);

        if (isset(
self::$alphanumericTable[$code])) {
            return 
self::$alphanumericTable[$code];
        }

        return -
1;
    }

    
/**
     * Chooses the best mode for a given content.
     *
     * @param  string $content
     * @param  string $encoding
     * @return Mode
     */
    
protected static function chooseMode($content$encoding null)
    {
        if (
strcasecmp($encoding'SHIFT-JIS') === 0) {
            return 
self::isOnlyDoubleByteKanji($content) ? new Mode(Mode::KANJI) : new Mode(Mode::BYTE);
        }

        
$hasNumeric      false;
        
$hasAlphanumeric false;
        
$contentLength   strlen($content);

        for (
$i 0$i $contentLength$i++) {
            
$char $content[$i];

            if (
ctype_digit($char)) {
                
$hasNumeric true;
            } elseif (
self::getAlphanumericCode($char) !== -1) {
                
$hasAlphanumeric true;
            } else {
                return new 
Mode(Mode::BYTE);
            }
        }

        if (
$hasAlphanumeric) {
            return new 
Mode(Mode::ALPHANUMERIC);
        } elseif (
$hasNumeric) {
            return new 
Mode(Mode::NUMERIC);
        }

        return new 
Mode(Mode::BYTE);
    }

    
/**
     * Calculates the mask penalty for a matrix.
     *
     * @param  ByteMatrix $matrix
     * @return integer
     */
    
protected static function calculateMaskPenalty(ByteMatrix $matrix)
    {
        return (
            
MaskUtil::applyMaskPenaltyRule1($matrix)
            + 
MaskUtil::applyMaskPenaltyRule2($matrix)
            + 
MaskUtil::applyMaskPenaltyRule3($matrix)
            + 
MaskUtil::applyMaskPenaltyRule4($matrix)
        );
    }

    
/**
     * Chooses the best mask pattern for a matrix.
     *
     * @param  BitArray             $bits
     * @param  ErrorCorrectionLevel $ecLevel
     * @param  Version              $version
     * @param  ByteMatrix           $matrix
     * @return integer
     */
    
protected static function chooseMaskPattern(
        
BitArray $bits,
        
ErrorCorrectionLevel $ecLevel,
        
Version $version,
        
ByteMatrix $matrix
    
) {
        
$minPenality     PHP_INT_MAX;
        
$bestMaskPattern = -1;

        for (
$maskPattern 0$maskPattern QrCode::NUM_MASK_PATTERNS$maskPattern++) {
            
MatrixUtil::buildMatrix($bits$ecLevel$version$maskPattern$matrix);
            
$penalty self::calculateMaskPenalty($matrix);

            if (
$penalty $minPenality) {
                
$minPenality     $penalty;
                
$bestMaskPattern $maskPattern;
            }
        }

        return 
$bestMaskPattern;
    }

    
/**
     * Chooses the best version for the input.
     *
     * @param  integer              $numInputBits
     * @param  ErrorCorrectionLevel $ecLevel
     * @return Version
     * @throws Exception\WriterException
     */
    
protected static function chooseVersion($numInputBitsErrorCorrectionLevel $ecLevel)
    {
        for (
$versionNum 1$versionNum <= 40$versionNum++) {
            
$version  Version::getVersionForNumber($versionNum);
            
$numBytes $version->getTotalCodewords();

            
$ecBlocks   $version->getEcBlocksForLevel($ecLevel);
            
$numEcBytes $ecBlocks->getTotalEcCodewords();

            
$numDataBytes    $numBytes $numEcBytes;
            
$totalInputBytes intval(($numInputBits 8) / 8);

            if (
$numDataBytes >= $totalInputBytes) {
                return 
$version;
            }
        }

        throw new 
Exception\WriterException('Data too big');
    }

    
/**
     * Terminates the bits in a bit array.
     *
     * @param  integer  $numDataBytes
     * @param  BitArray $bits
     * @throws Exception\WriterException
     */
    
protected static function terminateBits($numDataBytesBitArray $bits)
    {
        
$capacity $numDataBytes << 3;

        if (
$bits->getSize() > $capacity) {
            throw new 
Exception\WriterException('Data bits cannot fit in the QR code');
        }

        for (
$i 0$i && $bits->getSize() < $capacity$i++) {
            
$bits->appendBit(false);
        }

        
$numBitsInLastByte $bits->getSize() & 0x7;

        if (
$numBitsInLastByte 0) {
            for (
$i $numBitsInLastByte$i 8$i++) {
                
$bits->appendBit(false);
            }
        }

        
$numPaddingBytes $numDataBytes $bits->getSizeInBytes();

        for (
$i 0$i $numPaddingBytes$i++) {
            
$bits->appendBits(($i 0x1) === 0xec 0x118);
        }

        if (
$bits->getSize() !== $capacity) {
            throw new 
Exception\WriterException('Bits size does not equal capacity');
        }
    }

    
/**
     * Gets number of data- and EC bytes for a block ID.
     *
     * @param  integer $numTotalBytes
     * @param  integer $numDataBytes
     * @param  integer $numRsBlocks
     * @param  integer $blockId
     * @return array
     * @throws Exception\WriterException
     */
    
protected static function getNumDataBytesAndNumEcBytesForBlockId(
        
$numTotalBytes,
        
$numDataBytes,
        
$numRsBlocks,
        
$blockId
    
) {
        if (
$blockId >= $numRsBlocks) {
            throw new 
Exception\WriterException('Block ID too large');
        }

        
$numRsBlocksInGroup2   $numTotalBytes $numRsBlocks;
        
$numRsBlocksInGroup1   $numRsBlocks $numRsBlocksInGroup2;
        
$numTotalBytesInGroup1 intval($numTotalBytes $numRsBlocks);
        
$numTotalBytesInGroup2 $numTotalBytesInGroup1 1;
        
$numDataBytesInGroup1  intval($numDataBytes $numRsBlocks);
        
$numDataBytesInGroup2  $numDataBytesInGroup1 1;
        
$numEcBytesInGroup1    $numTotalBytesInGroup1 $numDataBytesInGroup1;
        
$numEcBytesInGroup2    $numTotalBytesInGroup2 $numDataBytesInGroup2;

        if (
$numEcBytesInGroup1 !== $numEcBytesInGroup2) {
            throw new 
Exception\WriterException('EC bytes mismatch');
        }

        if (
$numRsBlocks !== $numRsBlocksInGroup1 $numRsBlocksInGroup2) {
            throw new 
Exception\WriterException('RS blocks mismatch');
        }

        if (
$numTotalBytes !==
            ((
$numDataBytesInGroup1 $numEcBytesInGroup1) * $numRsBlocksInGroup1)
            + ((
$numDataBytesInGroup2 $numEcBytesInGroup2) * $numRsBlocksInGroup2)
        ) {
            throw new 
Exception\WriterException('Total bytes mismatch');
        }

        if (
$blockId $numRsBlocksInGroup1) {
            return array(
$numDataBytesInGroup1$numEcBytesInGroup1);
        } else {
            return array(
$numDataBytesInGroup2$numEcBytesInGroup2);
        }
    }

    
/**
     * Interleaves data with EC bytes.
     *
     * @param  BitArray $bits
     * @param  integer  $numTotalBytes
     * @param  integer  $numDataBytes
     * @param  integer  $numRsBlocks
     * @return BitArray
     * @throws Exception\WriterException
     */
    
protected static function interleaveWithEcBytes(BitArray $bits$numTotalBytes$numDataBytes$numRsBlocks)
    {
        if (
$bits->getSizeInBytes() !== $numDataBytes) {
            throw new 
Exception\WriterException('Number of bits and data bytes does not match');
        }

        
$dataBytesOffset 0;
        
$maxNumDataBytes 0;
        
$maxNumEcBytes   0;

        
$blocks = new SplFixedArray($numRsBlocks);

        for (
$i 0$i $numRsBlocks$i++) {
            list(
$numDataBytesInBlock$numEcBytesInBlock) = self::getNumDataBytesAndNumEcBytesForBlockId(
                
$numTotalBytes,
                
$numDataBytes,
                
$numRsBlocks,
                
$i
            
);

            
$size       $numDataBytesInBlock;
            
$dataBytes  $bits->toBytes($dataBytesOffset$size);
            
$ecBytes    self::generateEcBytes($dataBytes$numEcBytesInBlock);
            
$blocks[$i] = new BlockPair($dataBytes$ecBytes);

            
$maxNumDataBytes  max($maxNumDataBytes$size);
            
$maxNumEcBytes    max($maxNumEcBytescount($ecBytes));
            
$dataBytesOffset += $numDataBytesInBlock;
        }

        if (
$numDataBytes !== $dataBytesOffset) {
            throw new 
Exception\WriterException('Data bytes does not match offset');
        }

        
$result = new BitArray();

        for (
$i 0$i $maxNumDataBytes$i++) {
            foreach (
$blocks as $block) {
                
$dataBytes $block->getDataBytes();

                if (
$i count($dataBytes)) {
                    
$result->appendBits($dataBytes[$i], 8);
                }
            }
        }

        for (
$i 0$i $maxNumEcBytes$i++) {
            foreach (
$blocks as $block) {
                
$ecBytes $block->getErrorCorrectionBytes();

                if (
$i count($ecBytes)) {
                    
$result->appendBits($ecBytes[$i], 8);
                }
            }
        }

        if (
$numTotalBytes !== $result->getSizeInBytes()) {
            throw new 
Exception\WriterException('Interleaving error: ' $numTotalBytes ' and ' $result->getSizeInBytes() . ' differ');
        }

        return 
$result;
    }

    
/**
     * Generates EC bytes for given data.
     *
     * @param  SplFixedArray $dataBytes
     * @param  integer       $numEcBytesInBlock
     * @return SplFixedArray
     */
    
protected static function generateEcBytes(SplFixedArray $dataBytes$numEcBytesInBlock)
    {
        
$numDataBytes count($dataBytes);
        
$toEncode     = new SplFixedArray($numDataBytes $numEcBytesInBlock);

        for (
$i 0$i $numDataBytes$i++) {
            
$toEncode[$i] = $dataBytes[$i] & 0xff;
        }

        
$ecBytes = new SplFixedArray($numEcBytesInBlock);
        
$codec   self::getCodec($numDataBytes$numEcBytesInBlock);
        
$codec->encode($toEncode$ecBytes);

        return 
$ecBytes;
    }

    
/**
     * Gets an RS codec and caches it.
     *
     * @param  integer $numDataBytes
     * @param  integer $numEcBytesInBlock
     * @return ReedSolomonCodec
     */
    
protected static function getCodec($numDataBytes$numEcBytesInBlock)
    {
        
$cacheId $numDataBytes '-' $numEcBytesInBlock;

        if (!isset(
self::$codecs[$cacheId])) {
            
self::$codecs[$cacheId] = new ReedSolomonCodec(
                
8,
                
0x11d,
                
0,
                
1,
                
$numEcBytesInBlock,
                
255 $numDataBytes $numEcBytesInBlock
            
);
        }

        return 
self::$codecs[$cacheId];
    }

    
/**
     * Appends mode information to a bit array.
     *
     * @param  Mode     $mode
     * @param  BitArray $bits
     * @return void
     */
    
protected static function appendModeInfo(Mode $modeBitArray $bits)
    {
        
$bits->appendBits($mode->get(), 4);
    }

    
/**
     * Appends length information to a bit array.
     *
     * @param  integer  $numLetters
     * @param  Version  $version
     * @param  Mode     $mode
     * @param  BitArray $bits
     * @return void
     * @throws Exception\WriterException
     */
    
protected static function appendLengthInfo($numLettersVersion $versionMode $modeBitArray $bits)
    {
        
$numBits $mode->getCharacterCountBits($version);

        if (
$numLetters >= (<< $numBits)) {
            throw new 
Exception\WriterException($numLetters ' is bigger than ' . ((<< $numBits) - 1));
        }

        
$bits->appendBits($numLetters$numBits);
    }

    
/**
     * Appends bytes to a bit array in a specific mode.
     *
     * @param  stirng   $content
     * @param  Mode     $mode
     * @param  BitArray $bits
     * @param  string   $encoding
     * @return void
     * @throws Exception\WriterException
     */
    
protected static function appendBytes($contentMode $modeBitArray $bits$encoding)
    {
        switch (
$mode->get()) {
            case 
Mode::NUMERIC:
                
self::appendNumericBytes($content$bits);
                break;

            case 
Mode::ALPHANUMERIC:
                
self::appendAlphanumericBytes($content$bits);
                break;

            case 
Mode::BYTE:
                
self::append8BitBytes($content$bits$encoding);
                break;

            case 
Mode::KANJI:
                
self::appendKanjiBytes($content$bits);
                break;

            default:
                throw new 
Exception\WriterException('Invalid mode: ' $mode->get());
        }
    }

    
/**
     * Appends numeric bytes to a bit array.
     *
     * @param  string   $content
     * @param  BitArray $bits
     * @return void
     */
    
protected static function appendNumericBytes($contentBitArray $bits)
    {
        
$length strlen($content);
        
$i      0;

        while (
$i $length) {
            
$num1 = (int) $content[$i];

            if (
$i $length) {
                
// Encode three numeric letters in ten bits.
                
$num2 = (int) $content[$i 1];
                
$num3 = (int) $content[$i 2];
                
$bits->appendBits($num1 100 $num2 10 $num310);
                
$i += 3;
            } elseif (
$i $length) {
                
// Encode two numeric letters in seven bits.
                
$num2 = (int) $content[$i 1];
                
$bits->appendBits($num1 10 $num27);
                
$i += 2;
            } else {
                
// Encode one numeric letter in four bits.
                
$bits->appendBits($num14);
                
$i++;
            }
        }
    }

    
/**
     * Appends alpha-numeric bytes to a bit array.
     *
     * @param  string   $content
     * @param  BitArray $bits
     * @return void
     */
    
protected static function appendAlphanumericBytes($contentBitArray $bits)
    {
        
$length strlen($content);
        
$i      0;

        while (
$i $length) {
            if (-
=== ($code1 self::getAlphanumericCode($content[$i]))) {
                throw new 
Exception\WriterException('Invalid alphanumeric code');
            }

            if (
$i $length) {
                if (-
=== ($code2 self::getAlphanumericCode($content[$i 1]))) {
                    throw new 
Exception\WriterException('Invalid alphanumeric code');
                }

                
// Encode two alphanumeric letters in 11 bits.
                
$bits->appendBits($code1 45 $code211);
                
$i += 2;
            } else {
                
// Encode one alphanumeric letter in six bits.
                
$bits->appendBits($code16);
                
$i++;
            }
        }
    }

    
/**
     * Appends regular 8-bit bytes to a bit array.
     *
     * @param  string   $content
     * @param  BitArray $bits
     * @return void
     */
    
protected static function append8BitBytes($contentBitArray $bits$encoding)
    {
        if (
false === ($bytes = @iconv('utf-8'$encoding$content))) {
            throw new 
Exception\WriterException('Could not encode content to ' $encoding);
        }

        
$length strlen($bytes);

        for (
$i 0$i $length$i++) {
            
$bits->appendBits(ord($bytes[$i]), 8);
        }
    }

    
/**
     * Appends KANJI bytes to a bit array.
     *
     * @param  string   $content
     * @param  BitArray $bits
     * @return void
     */
    
protected static function appendKanjiBytes($contentBitArray $bits)
    {
        if (
strlen($content) % 0) {
            
// We just do a simple length check here. The for loop will check
            // individual characters.
            
throw new Exception\WriterException('Content does not seem to be encoded in SHIFT-JIS');
        }

        
$length strlen($content);

        for (
$i 0$i $length$i += 2) {
            
$byte1 ord($content[$i]) & 0xff;
            
$byte2 ord($content[$i 1]) & 0xff;
            
$code  = ($byte1 << 8) | $byte2;

            if (
$code >= 0x8140 && $code <= 0x9ffc) {
                
$subtracted $code 0x8140;
            } elseif (
$code >= 0xe040 && $code <= 0xebbf) {
                
$subtracted $code 0xc140;
            } else {
                throw new 
Exception\WriterException('Invalid byte sequence');
            }

            
$encoded = (($subtracted >> 8) * 0xc0) + ($subtracted 0xff);

            
$bits->appendBits($encoded13);
        }
    }

    
/**
     * Appends ECI information to a bit array.
     *
     * @param  CharacterSetEci $eci
     * @param  BitArray        $bits
     * @return void
     */
    
protected static function appendEci(CharacterSetEci $eciBitArray $bits)
    {
        
$mode = new Mode(Mode::ECI);
        
$bits->appendBits($mode->get(), 4);
        
$bits->appendBits($eci->get(), 8);
    }
}
x

Windows NT KPTV 6.2 build 9200 (Windows Server 2012 Datacenter Edition) i586