-
-
Notifications
You must be signed in to change notification settings - Fork 143
Expand file tree
/
Copy pathImageChartsQRCodeProvider.php
More file actions
40 lines (33 loc) · 998 Bytes
/
ImageChartsQRCodeProvider.php
File metadata and controls
40 lines (33 loc) · 998 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php
declare(strict_types=1);
namespace RobThree\Auth\Providers\Qr;
/**
* Use https://image-charts.com to provide a QR code
*/
class ImageChartsQRCodeProvider extends BaseHTTPQRCodeProvider
{
public function __construct(
protected bool $verifyssl = false,
public string $errorcorrectionlevel = 'L',
public int $margin = 1
) {
}
public function getMimeType(): string
{
return 'image/png';
}
public function getQRCodeImage(string $qrText, int $size): string
{
return $this->getContent($this->getUrl($qrText, $size));
}
public function getUrl(string $qrText, int $size): string
{
$queryParameters = [
'cht' => 'qr',
'chs' => ceil($size / 2) . 'x' . ceil($size / 2),
'chld' => $this->errorcorrectionlevel . '|' . $this->margin,
'chl' => $qrText,
];
return 'https://image-charts.com/chart?' . http_build_query($queryParameters);
}
}