image.php 243 B

12345678910
  1. <?php
  2. require_once '../vendor/autoload.php';
  3. use chillerlan\QRCode\Output\QRImage;
  4. use chillerlan\QRCode\QRCode;
  5. $im = (new QRCode('https://www.youtube.com/watch?v=DLzxrzFCyOs&t=43s', new QRImage))->output();
  6. echo '<img src="'.$im.'" />';