----------------------------------------------------------------------
($intext, $outfile = false)
| 444 | |
| 445 | //---------------------------------------------------------------------- |
| 446 | public function encodeRAW($intext, $outfile = false) |
| 447 | { |
| 448 | $code = new QRcode(); |
| 449 | |
| 450 | if($this->eightbit) { |
| 451 | $code->encodeString8bit($intext, $this->version, $this->level); |
| 452 | } else { |
| 453 | $code->encodeString($intext, $this->version, $this->level, $this->hint, $this->casesensitive); |
| 454 | } |
| 455 | |
| 456 | return $code->data; |
| 457 | } |
| 458 | |
| 459 | //---------------------------------------------------------------------- |
| 460 | public function encode($intext, $outfile = false) |
no test coverage detected