----------------------------------------------------------------------
()
| 678 | |
| 679 | //---------------------------------------------------------------------- |
| 680 | public function mergeBitStream() |
| 681 | { |
| 682 | if($this->convertData() < 0) { |
| 683 | return null; |
| 684 | } |
| 685 | |
| 686 | $bstream = new QRbitstream(); |
| 687 | |
| 688 | foreach($this->items as $item) { |
| 689 | $ret = $bstream->append($item->bstream); |
| 690 | if($ret < 0) { |
| 691 | return null; |
| 692 | } |
| 693 | } |
| 694 | |
| 695 | return $bstream; |
| 696 | } |
| 697 | |
| 698 | //---------------------------------------------------------------------- |
| 699 | public function getBitStream() |
no test coverage detected