margin() public method

Creates a margin around the QrCode.
public margin ( integer $margin )
$margin integer The desired margin in pixels around the QrCode
Ejemplo n.º 1
0
 /**
  * Generates a QR code data url to display inline.
  *
  * @param $company
  * @param $holder
  * @param $secret
  * @return string
  */
 public function getQRCodeInline($company, $holder, $secret, $size = 100)
 {
     $qr = new BaconQrCodeGenerator(null, new Png());
     $url = $this->getQRCodeUrl($company, $holder, $secret);
     return 'data:image/png;base64,' . base64_encode($qr->margin(0)->size($size)->generate($url));
 }
Ejemplo n.º 2
0
 /**
  * Creates a margin around the QrCode
  *
  * @param int $margin The desired margin in pixels around the QrCode
  * @return $this 
  * @static 
  */
 public static function margin($margin)
 {
     return \SimpleSoftwareIO\QrCode\BaconQrCodeGenerator::margin($margin);
 }