qrcode icon indicating copy to clipboard operation
qrcode copied to clipboard

QR code generating library with HTML/PNG/mPDF output possibilities

Results 4 qrcode issues
Sort by recently updated
recently updated
newest added

This PR allows the Mpdf Output function to pass along an optional fourth argument to `SetDrawColor` and `SetFillColor`, so that CMYK colors can be used for the QR Code.

In php 8.1 we are getting an undefined index warning

When I insert the SVG QR code into my PDF file, like so: ```php $qrCode = new QrCode($certQrCode); $qrCodeOutput = new Output\Svg(); $mpdf->WriteHTML('' . $qrCodeOutput->output($qrCode, 150, 'white', 'black') . '');...

### I found this bug ### This is mPDF and PHP version and environment (server/fpm/cli etc) I am using ### This is the PHP code snippet I use ```