Lines Matching refs:outfile
234 public static function log($outfile, $err) argument
238 if ($outfile !== false) {
239 …file_put_contents(QR_LOG_DIR.basename($outfile).'-errors.txt', date('Y-m-d H:i:s').': '.$err, FILE…
3091 …public static function png($text, $outfile = false, $level = QR_ECLEVEL_L, $size = 3, $margin = 4,… argument
3094 return $enc->encodePNG($text, $outfile, $saveandprint=false);
3098 …public static function text($text, $outfile = false, $level = QR_ECLEVEL_L, $size = 3, $margin = 4… argument
3101 return $enc->encode($text, $outfile);
3105 …public static function raw($text, $outfile = false, $level = QR_ECLEVEL_L, $size = 3, $margin = 4) argument
3108 return $enc->encodeRAW($text, $outfile);
3254 public function encodeRAW($intext, $outfile = false) argument
3268 public function encode($intext, $outfile = false) argument
3280 if ($outfile!== false) {
3281 file_put_contents($outfile, join("\n", QRtools::binarize($code->data)));
3288 public function encodePNG($intext, $outfile = false,$saveandprint=false) argument
3298 QRtools::log($outfile, $err);
3302 … QRimage::png($tab, $outfile, min(max(1, $this->size), $maxSize), $this->margin,$saveandprint);
3306 QRtools::log($outfile, $e->getMessage());