| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <?php
- /**
- * Class Byte
- *
- * @created 25.11.2015
- * @author Smiley <smiley@chillerlan.net>
- * @copyright 2015 Smiley
- * @license MIT
- */
- declare(strict_types=1);
- namespace chillerlan\QRCode\Data;
- use chillerlan\QRCode\Common\{BitBuffer, Mode};
- use function chr, ord;
- /**
- * 8-bit Byte mode, ISO-8859-1 or UTF-8
- *
- * ISO/IEC 18004:2000 Section 8.3.4
- * ISO/IEC 18004:2000 Section 8.4.4
- */
- final class Byte extends QRDataModeAbstract{
- public const DATAMODE = Mode::BYTE;
- public function getLengthInBits():int{
- return ($this->getCharCount() * 8);
- }
- public static function validateString(string $string):bool{
- return $string !== '';
- }
- public function write(BitBuffer $bitBuffer, int $versionNumber):static{
- $len = $this->getCharCount();
- $bitBuffer
- ->put(self::DATAMODE, 4)
- ->put($len, $this->getLengthBits($versionNumber))
- ;
- $i = 0;
- while($i < $len){
- $bitBuffer->put(ord($this->data[$i]), 8);
- $i++;
- }
- return $this;
- }
- /**
- * @inheritDoc
- *
- * @throws \chillerlan\QRCode\Data\QRCodeDataException
- */
- public function decodeSegment(BitBuffer $bitBuffer, int $versionNumber):string{
- $length = $bitBuffer->read($this->getLengthBits($versionNumber));
- if($bitBuffer->available() < (8 * $length)){
- throw new QRCodeDataException('not enough bits available'); // @codeCoverageIgnore
- }
- $readBytes = '';
- for($i = 0; $i < $length; $i++){
- $readBytes .= chr($bitBuffer->read(8));
- }
- return $readBytes;
- }
- }
|