コード例 #1
0
ファイル: OwnerController.php プロジェクト: Haseu/crm
 /**
  * QRcode a owner entity.
  *
  * @Route("/", name="owner_qrcode")
  */
 public function generateQRCode()
 {
     $entity = new Owner();
     $qrCode = new QrCode();
     $qrCode->setText("I would love to change the world, but they won't give me the source code");
     $qrCode->setSize(200);
     echo $qrCode->image("image alt", ['class' => 'qr-code-img']);
 }
コード例 #2
0
ファイル: image-tag-qrcode.php プロジェクト: scada-josh/rmr
<?php

include_once "../vendor/autoload.php";
use Arcanedev\QrCode\QrCode;
$qrCode = new QrCode();
$qrCode->setText("I would love to change the world, but they won't give me the source code");
$qrCode->setSize(200);
echo $qrCode->image('ARCANEDEV', ['style' => 'width: 150px;']);