SimpleSoftwareIO\QrCode\BaconQrCodeGenerator::margin PHP Method

margin() public method

Creates a margin around the QrCode.
public margin ( integer $margin )
$margin integer The desired margin in pixels around the QrCode
    public function margin($margin)
    {
        $this->writer->getRenderer()->setMargin($margin);
        return $this;
    }

Usage Example

Beispiel #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));
 }
All Usage Examples Of SimpleSoftwareIO\QrCode\BaconQrCodeGenerator::margin