├── LICENSE ├── README.md ├── assets └── open_sans.ttf ├── composer.json └── src ├── Bacon ├── ErrorCorrectionLevelConverter.php └── MatrixFactory.php ├── Builder ├── Builder.php ├── BuilderInterface.php ├── BuilderRegistry.php └── BuilderRegistryInterface.php ├── Color ├── Color.php └── ColorInterface.php ├── Encoding ├── Encoding.php └── EncodingInterface.php ├── ErrorCorrectionLevel.php ├── Exception ├── BlockSizeTooSmallException.php └── ValidationException.php ├── ImageData ├── LabelImageData.php └── LogoImageData.php ├── Label ├── Font │ ├── Font.php │ ├── FontInterface.php │ └── OpenSans.php ├── Label.php ├── LabelAlignment.php ├── LabelInterface.php └── Margin │ ├── Margin.php │ └── MarginInterface.php ├── Logo ├── Logo.php └── LogoInterface.php ├── Matrix ├── Matrix.php ├── MatrixFactoryInterface.php └── MatrixInterface.php ├── QrCode.php ├── QrCodeInterface.php ├── RoundBlockSizeMode.php └── Writer ├── AbstractGdWriter.php ├── BinaryWriter.php ├── ConsoleWriter.php ├── DebugWriter.php ├── EpsWriter.php ├── GifWriter.php ├── PdfWriter.php ├── PngWriter.php ├── Result ├── AbstractResult.php ├── BinaryResult.php ├── ConsoleResult.php ├── DebugResult.php ├── EpsResult.php ├── GdResult.php ├── GifResult.php ├── PdfResult.php ├── PngResult.php ├── ResultInterface.php ├── SvgResult.php └── WebPResult.php ├── SvgWriter.php ├── ValidatingWriterInterface.php ├── WebPWriter.php └── WriterInterface.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/README.md -------------------------------------------------------------------------------- /assets/open_sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/assets/open_sans.ttf -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/composer.json -------------------------------------------------------------------------------- /src/Bacon/ErrorCorrectionLevelConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/Bacon/ErrorCorrectionLevelConverter.php -------------------------------------------------------------------------------- /src/Bacon/MatrixFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/Bacon/MatrixFactory.php -------------------------------------------------------------------------------- /src/Builder/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/Builder/Builder.php -------------------------------------------------------------------------------- /src/Builder/BuilderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/Builder/BuilderInterface.php -------------------------------------------------------------------------------- /src/Builder/BuilderRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/Builder/BuilderRegistry.php -------------------------------------------------------------------------------- /src/Builder/BuilderRegistryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/Builder/BuilderRegistryInterface.php -------------------------------------------------------------------------------- /src/Color/Color.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/Color/Color.php -------------------------------------------------------------------------------- /src/Color/ColorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/Color/ColorInterface.php -------------------------------------------------------------------------------- /src/Encoding/Encoding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/Encoding/Encoding.php -------------------------------------------------------------------------------- /src/Encoding/EncodingInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/Encoding/EncodingInterface.php -------------------------------------------------------------------------------- /src/ErrorCorrectionLevel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/ErrorCorrectionLevel.php -------------------------------------------------------------------------------- /src/Exception/BlockSizeTooSmallException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/Exception/BlockSizeTooSmallException.php -------------------------------------------------------------------------------- /src/Exception/ValidationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/Exception/ValidationException.php -------------------------------------------------------------------------------- /src/ImageData/LabelImageData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/ImageData/LabelImageData.php -------------------------------------------------------------------------------- /src/ImageData/LogoImageData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/ImageData/LogoImageData.php -------------------------------------------------------------------------------- /src/Label/Font/Font.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/Label/Font/Font.php -------------------------------------------------------------------------------- /src/Label/Font/FontInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/Label/Font/FontInterface.php -------------------------------------------------------------------------------- /src/Label/Font/OpenSans.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/Label/Font/OpenSans.php -------------------------------------------------------------------------------- /src/Label/Label.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/Label/Label.php -------------------------------------------------------------------------------- /src/Label/LabelAlignment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/Label/LabelAlignment.php -------------------------------------------------------------------------------- /src/Label/LabelInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/Label/LabelInterface.php -------------------------------------------------------------------------------- /src/Label/Margin/Margin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/Label/Margin/Margin.php -------------------------------------------------------------------------------- /src/Label/Margin/MarginInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/Label/Margin/MarginInterface.php -------------------------------------------------------------------------------- /src/Logo/Logo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/Logo/Logo.php -------------------------------------------------------------------------------- /src/Logo/LogoInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/Logo/LogoInterface.php -------------------------------------------------------------------------------- /src/Matrix/Matrix.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/Matrix/Matrix.php -------------------------------------------------------------------------------- /src/Matrix/MatrixFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/Matrix/MatrixFactoryInterface.php -------------------------------------------------------------------------------- /src/Matrix/MatrixInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/Matrix/MatrixInterface.php -------------------------------------------------------------------------------- /src/QrCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/QrCode.php -------------------------------------------------------------------------------- /src/QrCodeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/QrCodeInterface.php -------------------------------------------------------------------------------- /src/RoundBlockSizeMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/RoundBlockSizeMode.php -------------------------------------------------------------------------------- /src/Writer/AbstractGdWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/Writer/AbstractGdWriter.php -------------------------------------------------------------------------------- /src/Writer/BinaryWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/Writer/BinaryWriter.php -------------------------------------------------------------------------------- /src/Writer/ConsoleWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/Writer/ConsoleWriter.php -------------------------------------------------------------------------------- /src/Writer/DebugWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/Writer/DebugWriter.php -------------------------------------------------------------------------------- /src/Writer/EpsWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/Writer/EpsWriter.php -------------------------------------------------------------------------------- /src/Writer/GifWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/Writer/GifWriter.php -------------------------------------------------------------------------------- /src/Writer/PdfWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/Writer/PdfWriter.php -------------------------------------------------------------------------------- /src/Writer/PngWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/Writer/PngWriter.php -------------------------------------------------------------------------------- /src/Writer/Result/AbstractResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/Writer/Result/AbstractResult.php -------------------------------------------------------------------------------- /src/Writer/Result/BinaryResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/Writer/Result/BinaryResult.php -------------------------------------------------------------------------------- /src/Writer/Result/ConsoleResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/Writer/Result/ConsoleResult.php -------------------------------------------------------------------------------- /src/Writer/Result/DebugResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/Writer/Result/DebugResult.php -------------------------------------------------------------------------------- /src/Writer/Result/EpsResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/Writer/Result/EpsResult.php -------------------------------------------------------------------------------- /src/Writer/Result/GdResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/Writer/Result/GdResult.php -------------------------------------------------------------------------------- /src/Writer/Result/GifResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/Writer/Result/GifResult.php -------------------------------------------------------------------------------- /src/Writer/Result/PdfResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/Writer/Result/PdfResult.php -------------------------------------------------------------------------------- /src/Writer/Result/PngResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/Writer/Result/PngResult.php -------------------------------------------------------------------------------- /src/Writer/Result/ResultInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/Writer/Result/ResultInterface.php -------------------------------------------------------------------------------- /src/Writer/Result/SvgResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/Writer/Result/SvgResult.php -------------------------------------------------------------------------------- /src/Writer/Result/WebPResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/Writer/Result/WebPResult.php -------------------------------------------------------------------------------- /src/Writer/SvgWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/Writer/SvgWriter.php -------------------------------------------------------------------------------- /src/Writer/ValidatingWriterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/Writer/ValidatingWriterInterface.php -------------------------------------------------------------------------------- /src/Writer/WebPWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/Writer/WebPWriter.php -------------------------------------------------------------------------------- /src/Writer/WriterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endroid/qr-code/HEAD/src/Writer/WriterInterface.php --------------------------------------------------------------------------------