:octocat: added QRMatrix::M_*_DARK constants for convenience

This commit is contained in:
smiley
2023-03-12 14:32:02 +01:00
parent 428df0d78d
commit 51d7c2b8a3
21 changed files with 270 additions and 251 deletions
+21 -21
View File
@@ -17,45 +17,45 @@ $options = new QROptions([
'version' => 7,
'outputType' => QROutputInterface::GDIMAGE_PNG,
'eccLevel' => EccLevel::L,
'scale' => 10,
'scale' => 20,
'imageBase64' => false,
'bgColor' => [200, 200, 200],
'bgColor' => [200, 150, 200],
'imageTransparent' => false,
'drawCircularModules' => true,
'circleRadius' => 0.4,
'keepAsSquare' => [
(QRMatrix::M_FINDER|QRMatrix::IS_DARK),
QRMatrix::M_FINDER_DARK,
QRMatrix::M_FINDER_DOT,
(QRMatrix::M_ALIGNMENT|QRMatrix::IS_DARK),
QRMatrix::M_ALIGNMENT_DARK,
],
'moduleValues' => [
// finder
(QRMatrix::M_FINDER | QRMatrix::IS_DARK) => [0, 63, 255], // 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)
QRMatrix::M_FINDER_DARK => [0, 63, 255], // dark (true)
QRMatrix::M_FINDER_DOT => [0, 63, 255], // finder dot, dark (true)
QRMatrix::M_FINDER => [233, 233, 233], // light (false), white is the transparency color and is enabled by default
// alignment
(QRMatrix::M_ALIGNMENT | QRMatrix::IS_DARK) => [255, 0, 255],
QRMatrix::M_ALIGNMENT => [233, 233, 233],
QRMatrix::M_ALIGNMENT_DARK => [255, 0, 255],
QRMatrix::M_ALIGNMENT => [233, 233, 233],
// timing
(QRMatrix::M_TIMING | QRMatrix::IS_DARK) => [255, 0, 0],
QRMatrix::M_TIMING => [233, 233, 233],
QRMatrix::M_TIMING_DARK => [255, 0, 0],
QRMatrix::M_TIMING => [233, 233, 233],
// format
(QRMatrix::M_FORMAT | QRMatrix::IS_DARK) => [67, 159, 84],
QRMatrix::M_FORMAT => [233, 233, 233],
QRMatrix::M_FORMAT_DARK => [67, 159, 84],
QRMatrix::M_FORMAT => [233, 233, 233],
// version
(QRMatrix::M_VERSION | QRMatrix::IS_DARK) => [62, 174, 190],
QRMatrix::M_VERSION => [233, 233, 233],
QRMatrix::M_VERSION_DARK => [62, 174, 190],
QRMatrix::M_VERSION => [233, 233, 233],
// data
(QRMatrix::M_DATA | QRMatrix::IS_DARK) => [0, 0, 0],
QRMatrix::M_DATA => [233, 233, 233],
QRMatrix::M_DATA_DARK => [0, 0, 0],
QRMatrix::M_DATA => [233, 233, 233],
// darkmodule
(QRMatrix::M_DARKMODULE | QRMatrix::IS_DARK) => [0, 0, 0],
QRMatrix::M_DARKMODULE => [0, 0, 0],
// separator
QRMatrix::M_SEPARATOR => [233, 233, 233],
QRMatrix::M_SEPARATOR => [233, 233, 233],
// quietzone
QRMatrix::M_QUIETZONE => [233, 233, 233],
QRMatrix::M_QUIETZONE => [233, 233, 233],
// logo (requires a call to QRMatrix::setLogoSpace()), see QRImageWithLogo
QRMatrix::M_LOGO => [233, 233, 233],
QRMatrix::M_LOGO => [233, 233, 233],
],
]);