|
@@ -11,51 +11,63 @@ namespace chillerlan\QRCodeExamples;
|
|
|
use chillerlan\QRCode\{QRCode, QROptions};
|
|
use chillerlan\QRCode\{QRCode, QROptions};
|
|
|
use chillerlan\QRCode\Data\QRMatrix;
|
|
use chillerlan\QRCode\Data\QRMatrix;
|
|
|
use chillerlan\QRCode\Common\EccLevel;
|
|
use chillerlan\QRCode\Common\EccLevel;
|
|
|
|
|
+use Throwable;
|
|
|
|
|
|
|
|
require_once __DIR__.'/../vendor/autoload.php';
|
|
require_once __DIR__.'/../vendor/autoload.php';
|
|
|
|
|
|
|
|
$data = 'https://www.youtube.com/watch?v=DLzxrzFCyOs&t=43s';
|
|
$data = 'https://www.youtube.com/watch?v=DLzxrzFCyOs&t=43s';
|
|
|
|
|
|
|
|
$options = new QROptions([
|
|
$options = new QROptions([
|
|
|
- 'version' => 5,
|
|
|
|
|
- 'outputType' => QRCode::OUTPUT_IMAGE_PNG,
|
|
|
|
|
- 'eccLevel' => EccLevel::L,
|
|
|
|
|
- 'scale' => 5,
|
|
|
|
|
- 'imageBase64' => false,
|
|
|
|
|
- 'moduleValues' => [
|
|
|
|
|
|
|
+ 'version' => 7,
|
|
|
|
|
+ 'outputType' => QRCode::OUTPUT_IMAGE_PNG,
|
|
|
|
|
+ 'eccLevel' => EccLevel::L,
|
|
|
|
|
+ 'scale' => 10,
|
|
|
|
|
+ 'imageBase64' => false,
|
|
|
|
|
+ 'imageTransparent' => false,
|
|
|
|
|
+ 'drawCircularModules' => true,
|
|
|
|
|
+ 'circleRadius' => 0.4,
|
|
|
|
|
+ 'keepAsSquare' => [QRMatrix::M_FINDER|QRMatrix::IS_DARK, QRMatrix::M_FINDER_DOT, QRMatrix::M_ALIGNMENT|QRMatrix::IS_DARK],
|
|
|
|
|
+ 'moduleValues' => [
|
|
|
// finder
|
|
// finder
|
|
|
QRMatrix::M_FINDER | QRMatrix::IS_DARK => [0, 63, 255], // dark (true)
|
|
QRMatrix::M_FINDER | QRMatrix::IS_DARK => [0, 63, 255], // dark (true)
|
|
|
- QRMatrix::M_FINDER => [255, 255, 255], // light (false), white is the transparency color and is enabled by default
|
|
|
|
|
- QRMatrix::M_FINDER_DOT | QRMatrix::IS_DARK => [241, 28, 163], // finder dot, dark (true)
|
|
|
|
|
|
|
+ QRMatrix::M_FINDER => [233, 233, 233], // light (false), white is the transparency color and is enabled by default
|
|
|
|
|
+ QRMatrix::M_FINDER_DOT | QRMatrix::IS_DARK => [0, 63, 255], // finder dot, dark (true)
|
|
|
// alignment
|
|
// alignment
|
|
|
QRMatrix::M_ALIGNMENT | QRMatrix::IS_DARK => [255, 0, 255],
|
|
QRMatrix::M_ALIGNMENT | QRMatrix::IS_DARK => [255, 0, 255],
|
|
|
- QRMatrix::M_ALIGNMENT => [255, 255, 255],
|
|
|
|
|
|
|
+ QRMatrix::M_ALIGNMENT => [233, 233, 233],
|
|
|
// timing
|
|
// timing
|
|
|
QRMatrix::M_TIMING | QRMatrix::IS_DARK => [255, 0, 0],
|
|
QRMatrix::M_TIMING | QRMatrix::IS_DARK => [255, 0, 0],
|
|
|
- QRMatrix::M_TIMING => [255, 255, 255],
|
|
|
|
|
|
|
+ QRMatrix::M_TIMING => [233, 233, 233],
|
|
|
// format
|
|
// format
|
|
|
- QRMatrix::M_FORMAT | QRMatrix::IS_DARK => [67, 99, 84],
|
|
|
|
|
- QRMatrix::M_FORMAT => [255, 255, 255],
|
|
|
|
|
|
|
+ QRMatrix::M_FORMAT | QRMatrix::IS_DARK => [67, 159, 84],
|
|
|
|
|
+ QRMatrix::M_FORMAT => [233, 233, 233],
|
|
|
// version
|
|
// version
|
|
|
QRMatrix::M_VERSION | QRMatrix::IS_DARK => [62, 174, 190],
|
|
QRMatrix::M_VERSION | QRMatrix::IS_DARK => [62, 174, 190],
|
|
|
- QRMatrix::M_VERSION => [255, 255, 255],
|
|
|
|
|
|
|
+ QRMatrix::M_VERSION => [233, 233, 233],
|
|
|
// data
|
|
// data
|
|
|
QRMatrix::M_DATA | QRMatrix::IS_DARK => [0, 0, 0],
|
|
QRMatrix::M_DATA | QRMatrix::IS_DARK => [0, 0, 0],
|
|
|
- QRMatrix::M_DATA => [255, 255, 255],
|
|
|
|
|
|
|
+ QRMatrix::M_DATA => [233, 233, 233],
|
|
|
// darkmodule
|
|
// darkmodule
|
|
|
QRMatrix::M_DARKMODULE | QRMatrix::IS_DARK => [0, 0, 0],
|
|
QRMatrix::M_DARKMODULE | QRMatrix::IS_DARK => [0, 0, 0],
|
|
|
// separator
|
|
// separator
|
|
|
- QRMatrix::M_SEPARATOR => [255, 255, 255],
|
|
|
|
|
|
|
+ QRMatrix::M_SEPARATOR => [233, 233, 233],
|
|
|
// quietzone
|
|
// quietzone
|
|
|
- QRMatrix::M_QUIETZONE => [255, 255, 255],
|
|
|
|
|
|
|
+ QRMatrix::M_QUIETZONE => [233, 233, 233],
|
|
|
// logo (requires a call to QRMatrix::setLogoSpace()), see QRImageWithLogo
|
|
// logo (requires a call to QRMatrix::setLogoSpace()), see QRImageWithLogo
|
|
|
- QRMatrix::M_LOGO => [255, 255, 255],
|
|
|
|
|
|
|
+ QRMatrix::M_LOGO => [233, 233, 233],
|
|
|
],
|
|
],
|
|
|
]);
|
|
]);
|
|
|
|
|
|
|
|
|
|
+try{
|
|
|
|
|
+ $im = (new QRCode($options))->render($data);
|
|
|
|
|
+}
|
|
|
|
|
+catch(Throwable $e){
|
|
|
|
|
+ exit($e->getMessage());
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
header('Content-type: image/png');
|
|
header('Content-type: image/png');
|
|
|
|
|
|
|
|
-echo (new QRCode($options))->render($data);
|
|
|
|
|
|
|
+echo $im;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|