* @copyright 2015 Smiley * @license MIT */ namespace chillerlan\QRCode; /** * */ class BitBuffer{ /** * @var array */ public $buffer = []; /** * @var int */ public $length = 0; /** * */ public function clear(){ $this->buffer = []; $this->length = 0; } /** * @param int $num * @param int $length * * @return $this */ public function put($num, $length){ for($i = 0; $i < $length; $i++){ $this->putBit(($num >> ($length - $i - 1))&1 === 1); } } /** * @param bool $bit * * @return $this */ public function putBit($bit){ $bufIndex = floor($this->length / 8); if(count($this->buffer) <= $bufIndex){ $this->buffer[] = 0; } if($bit){ $this->buffer[(int)$bufIndex] |= (0x80 >> ($this->length % 8)); } $this->length++; } }