mirror of
https://github.com/chillerlan/php-qrcode.git
synced 2026-08-17 20:51:51 +00:00
:octocat: added QRMatrix::M_*_DARK constants for convenience
This commit is contained in:
+16
-15
@@ -22,29 +22,30 @@ $options = new QROptions([
|
||||
'imageBase64' => false,
|
||||
'moduleValues' => [
|
||||
// finder
|
||||
(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_DARK => [0, 63, 255], // dark (true)
|
||||
QRMatrix::M_FINDER_DOT => [0, 63, 255], // finder dot, dark (true)
|
||||
QRMatrix::M_FINDER => [255, 255, 255], // 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 => [255, 255, 255],
|
||||
QRMatrix::M_ALIGNMENT_DARK => [255, 0, 255],
|
||||
QRMatrix::M_ALIGNMENT => [255, 255, 255],
|
||||
// timing
|
||||
(QRMatrix::M_TIMING | QRMatrix::IS_DARK) => [255, 0, 0],
|
||||
QRMatrix::M_TIMING => [255, 255, 255],
|
||||
QRMatrix::M_TIMING_DARK => [255, 0, 0],
|
||||
QRMatrix::M_TIMING => [255, 255, 255],
|
||||
// format
|
||||
(QRMatrix::M_FORMAT | QRMatrix::IS_DARK) => [67, 191, 84],
|
||||
QRMatrix::M_FORMAT => [255, 255, 255],
|
||||
QRMatrix::M_FORMAT_DARK => [67, 191, 84],
|
||||
QRMatrix::M_FORMAT => [255, 255, 255],
|
||||
// version
|
||||
(QRMatrix::M_VERSION | QRMatrix::IS_DARK) => [62, 174, 190],
|
||||
QRMatrix::M_VERSION => [255, 255, 255],
|
||||
QRMatrix::M_VERSION_DARK => [62, 174, 190],
|
||||
QRMatrix::M_VERSION => [255, 255, 255],
|
||||
// data
|
||||
(QRMatrix::M_DATA | QRMatrix::IS_DARK) => [0, 0, 0],
|
||||
QRMatrix::M_DATA => [255, 255, 255],
|
||||
QRMatrix::M_DATA_DARK => [0, 0, 0],
|
||||
QRMatrix::M_DATA => [255, 255, 255],
|
||||
// darkmodule
|
||||
(QRMatrix::M_DARKMODULE | QRMatrix::IS_DARK) => [0, 0, 0],
|
||||
QRMatrix::M_DARKMODULE => [0, 0, 0],
|
||||
// separator
|
||||
QRMatrix::M_SEPARATOR => [255, 255, 255],
|
||||
QRMatrix::M_SEPARATOR => [255, 255, 255],
|
||||
// quietzone
|
||||
QRMatrix::M_QUIETZONE => [255, 255, 255],
|
||||
QRMatrix::M_QUIETZONE => [255, 255, 255],
|
||||
],
|
||||
]);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user