----------------------------------------------------------------------
($text, $outfile = false, $level = QR_ECLEVEL_L, $size = 3, $margin = 4, $saveandprint=false)
| 3089 | |
| 3090 | //---------------------------------------------------------------------- |
| 3091 | public static function png($text, $outfile = false, $level = QR_ECLEVEL_L, $size = 3, $margin = 4, $saveandprint=false) |
| 3092 | { |
| 3093 | $enc = QRencode::factory($level, $size, $margin); |
| 3094 | return $enc->encodePNG($text, $outfile, $saveandprint=false); |
| 3095 | } |
| 3096 | |
| 3097 | //---------------------------------------------------------------------- |
| 3098 | public static function text($text, $outfile = false, $level = QR_ECLEVEL_L, $size = 3, $margin = 4) |
no test coverage detected