image.php 421 B

12345678910111213141516171819
  1. <?php
  2. require_once '../vendor/autoload.php';
  3. use chillerlan\QRCode\Output\QRImage;
  4. use chillerlan\QRCode\QRCode;
  5. use chillerlan\QRCode\QRConst;
  6. use chillerlan\QRCode\QROptions;
  7. $qrOptions = new QROptions;
  8. $qrOptions->output = new QRImage();
  9. $qr = new QRCode('https://www.youtube.com/watch?v=DLzxrzFCyOs&t=43s', $qrOptions);
  10. header('Content-type: image/png');
  11. $im = $qr->output();
  12. imagepng($im);
  13. imagedestroy($im);