QR Code version number
1 ... 40 or Version::AUTO (default)
See also:
\chillerlan\QRCode\Common\VersionMinimum QR version
if QROptions::$version is set to Version::AUTO (default: 1)
Maximum QR version
if QROptions::$version is set to Version::AUTO (default: 40)
Error correct level
EccLevel::X where X is:
L => 7% (default)M => 15%Q => 25%H => 30%See also:
\chillerlan\QRCode\Common\EccLevelMask Pattern to use (no value in using, mostly for unit testing purposes)
0 ... 7 or MaskPattern::PATTERN_AUTO (default)
See also:
\chillerlan\QRCode\Common\MaskPatternAdd a "quiet zone" (margin) according to the QR code spec
See also:
Size of the quiet zone
internally clamped to 0 ... $moduleCount / 2 (default: 4)
The built-in output type
QROutputInterface::MARKUP_SVG (default)QROutputInterface::MARKUP_HTMLQROutputInterface::GDIMAGE_BMPQROutputInterface::GDIMAGE_GIFQROutputInterface::GDIMAGE_JPGQROutputInterface::GDIMAGE_PNGQROutputInterface::GDIMAGE_WEBPQROutputInterface::STRING_TEXTQROutputInterface::STRING_JSONQROutputInterface::IMAGICKQROutputInterface::EPSQROutputInterface::FPDFQROutputInterface::CUSTOMSee also:
\chillerlan\QRCode\Output\QREps\chillerlan\QRCode\Output\QRFpdf\chillerlan\QRCode\Output\QRGdImage\chillerlan\QRCode\Output\QRImagick\chillerlan\QRCode\Output\QRMarkupHTML\chillerlan\QRCode\Output\QRMarkupSVG\chillerlan\QRCode\Output\QRStringThe FQCN of the custom QROutputInterface
if QROptions::$outputType is set to QROutputInterface::CUSTOM (default: null)
Return the image resource instead of a render if applicable.
QRGdImage: resource (PHP < 8), GdImageQRImagick: ImagickQRFpdf: FPDFThis option overrides/ignores other output settings, such as QROptions::$cachefile
and QROptions::$outputBase64. (default: false)
See also:
\chillerlan\QRCode\Output\QROutputInterface::dump()Optional cache file path /path/to/cache.file
Please note that the $file parameter in QRCode::render() and QRCode::renderMatrix()
takes precedence over the QROptions::$cachefile value. (default: null)
See also:
\chillerlan\QRCode\QRCode::render()\chillerlan\QRCode\QRCode::renderMatrix()Toggle base64 data URI or raw data output (if applicable)
(default: true)
See also:
\chillerlan\QRCode\Output\QROutputAbstract::toBase64DataURI()Newline string
(default: PHP_EOL)
Sets the image background color (if applicable)
QRImagick: defaults to "white"QRGdImage: defaults to [255, 255, 255]QRFpdf: defaults to blank internally (white page)Whether to invert the matrix (reflectance reversal)
(default: false)
See also:
\chillerlan\QRCode\Data\QRMatrix::invert()Whether to draw the light (false) modules
(default: true)
Specify whether to draw the modules as filled circles
a note for GdImage output:
if QROptions::$scale is less than 20, the image will be upscaled internally, then the modules will be drawn
using imagefilledellipse() and then scaled back to the expected size
No effect in: QREps, QRFpdf, QRMarkupHTML
See also:
\imagefilledellipse()Specifies the radius of the modules when QROptions::$drawCircularModules is set to true
(default: 0.45)
Specifies which module types to exclude when QROptions::$drawCircularModules is set to true
(default: [])
Whether to connect the paths for the several module types to avoid weird glitches when using gradients etc.
See also:
Specify which paths/patterns to exclude from connecting if QROptions::$connectPaths is set to true
Module values map
QRImagick, QRMarkupHTML, QRMarkupSVG: #ABCDEF, cssname, rgb(), rgba()...QREps, QRFpdf, QRGdImage: [R, G, B] // 0-255QREps: [C, M, Y, K] // 0-255See also:
\chillerlan\QRCode\Output\QROutputAbstract::setModuleValues()Toggles logo space creation
See also:
\chillerlan\QRCode\QRCode::addMatrixModifications()\chillerlan\QRCode\Data\QRMatrix::setLogoSpace()Width of the logo space
if only QROptions::$logoSpaceWidth is given, the logo space is assumed a square of that size
Height of the logo space
if only QROptions::$logoSpaceHeight is given, the logo space is assumed a square of that size
Optional horizontal start position of the logo space (top left corner)
Optional vertical start position of the logo space (top left corner)
Pixel size of a QR code module
Toggle transparency
QRGdImage and QRImagick: the given QROptions::$transparencyColor is set as transparentSee also:
Sets a transparency color for when QROptions::$imageTransparent is set to true.
Defaults to QROptions::$bgColor.
QRGdImage: [R, G, B], this color is set as transparent in imagecolortransparent()QRImagick: "color_str", this color is set in Imagick::transparentPaintImage()See also:
Compression quality
The given value depends on the used output type:
QROutputInterface::GDIMAGE_BMP: [0...1]QROutputInterface::GDIMAGE_JPG: [0...100]QROutputInterface::GDIMAGE_WEBP: [0...9]QROutputInterface::GDIMAGE_PNG: [0...100]QROutputInterface::IMAGICK: [0...100]See also:
\imagebmp()\imagejpeg()\imagepng()\imagewebp()\Imagick::setImageCompressionQuality()Imagick output format
See also:
A common css class
Markup substitute for dark (CSS value)
Markup substitute for light (CSS value)
Whether to add an XML header line or not, e.g. to embed the SVG directly in HTML
<?xml version="1.0" encoding="UTF-8"?>
SVG path opacity
Sets the value for the SVG "fill-opacity" on a <path> element. Only in effect when non-empty values
for QROptions::$markupDark and QROptions::$markupLight are given.
The opacity value is the same for all paths - please use CSS for more sophisticated implementations.
Anything in the SVG <defs> tag
See also:
Sets the value for the "preserveAspectRatio" on the <svg> element
See also:
String substitute for dark
See also:
String substitute for light
An optional line prefix, e.g. empty space to align the QR Code in a console
Whether to return matrix values in JSON as booleans or $M_TYPE integers
Measurement unit for FPDF output: pt, mm, cm, in (default: pt)
See also:
FPDF::__construct()Use Imagick (if available) when reading QR Codes
Grayscale the image before reading
Increase the contrast before reading
note that applying contrast works different in GD and Imagick, so mileage may vary