C:\xampp2_not used\phpMyAdmin\vendor\bacon\bacon-qr-code\src\BaconQrCode\Common\Mode.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
<?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\Common;

/**
 * Enum representing various modes in which data can be encoded to bits.
 */
class Mode extends AbstractEnum
{
    
/**#@+
     * Mode constants.
     */
    
const TERMINATOR           0x0;
    const 
NUMERIC              0x1;
    const 
ALPHANUMERIC         0x2;
    const 
STRUCTURED_APPEND    0x3;
    const 
BYTE                 0x4;
    const 
ECI                  0x7;
    const 
KANJI                0x8;
    const 
FNC1_FIRST_POSITION  0x5;
    const 
FNC1_SECOND_POSITION 0x9;
    const 
HANZI                0xd;
    
/**#@-*/

    /**
     * Character count bits for each version.
     *
     * @var array
     */
    
protected static $characterCountBitsForVersions = array(
        
self::TERMINATOR           => array(000),
        
self::NUMERIC              => array(101214),
        
self::ALPHANUMERIC         => array(91113),
        
self::STRUCTURED_APPEND    => array(000),
        
self::BYTE                 => array(81616),
        
self::ECI                  => array(000),
        
self::KANJI                => array(81012),
        
self::FNC1_FIRST_POSITION  => array(000),
        
self::FNC1_SECOND_POSITION => array(000),
        
self::HANZI                => array(81012),
    );

    
/**
     * Gets the number of bits used in a specific QR code version.
     *
     * @param  Version $version
     * @return integer
     */
    
public function getCharacterCountBits(Version $version)
    {
        
$number $version->getVersionNumber();

        if (
$number <= 9) {
            
$offset 0;
        } elseif (
$number <= 26) {
            
$offset 1;
        } else {
            
$offset 2;
        }

        return 
self::$characterCountBitsForVersions[$this->value][$offset];
    }
}
x

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