123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455 |
- /*
- * QR.Flutter
- * Copyright (c) 2019 the QR.Flutter authors.
- * See LICENSE for distribution and usage details.
- */
- import 'dart:async';
- import 'dart:ui' as ui;
- import 'package:flutter/services.dart';
- import 'package:flutter/widgets.dart';
- import 'package:flyinsonolite/infrastructure/scale.dart';
- import 'package:qr/qr.dart';
- import 'package:flyinsonolite/controls/qrcode/qrtypes.dart';
- import 'package:flyinsonolite/controls/qrcode/qrversions.dart';
- import 'package:flyinsonolite/controls/qrcode/paintcache.dart';
- import 'package:flyinsonolite/controls/qrcode/qrerrors.dart';
- import 'package:flyinsonolite/controls/qrcode/qrvalidator.dart';
- // ignore_for_file: deprecated_member_use_from_same_package
- const _finderPatternLimit = 7;
- // default color for the qr code pixels
- const Color? _qrDefaultColor = null;
- /// A [CustomPainter] object that you can use to paint a QR code.
- class QrPainter extends CustomPainter {
- /// Create a new QRPainter with passed options (or defaults).
- QrPainter({
- required String data,
- required this.version,
- this.errorCorrectionLevel = QrErrorCorrectLevel.L,
- this.color = _qrDefaultColor,
- this.emptyColor,
- this.gapless = false,
- this.embeddedImage,
- this.embeddedImageStyle,
- this.eyeStyle = const QrEyeStyle(
- eyeShape: QrEyeShape.square,
- color: Color(0xFF000000),
- ),
- this.dataModuleStyle = const QrDataModuleStyle(
- dataModuleShape: QrDataModuleShape.square,
- color: Color(0xFF000000),
- ),
- }) : assert(QrVersions.isSupportedVersion(version)) {
- _init(data);
- }
- /// Create a new QrPainter with a pre-validated/created [QrCode] object. This
- /// constructor is useful when you have a custom validation / error handling
- /// flow or for when you need to pre-validate the QR data.
- QrPainter.withQr({
- required QrCode qr,
- this.color = _qrDefaultColor,
- this.emptyColor,
- this.gapless = false,
- this.embeddedImage,
- this.embeddedImageStyle,
- this.eyeStyle = const QrEyeStyle(
- eyeShape: QrEyeShape.square,
- color: Color(0xFF000000),
- ),
- this.dataModuleStyle = const QrDataModuleStyle(
- dataModuleShape: QrDataModuleShape.square,
- color: Color(0xFF000000),
- ),
- }) : _qr = qr,
- version = qr.typeNumber,
- errorCorrectionLevel = qr.errorCorrectLevel {
- _calcVersion = version;
- _initPaints();
- }
- /// The QR code version.
- final int version; // the qr code version
- /// The error correction level of the QR code.
- final int errorCorrectionLevel; // the qr code error correction level
- /// The color of the squares.
- @Deprecated('use colors in eyeStyle and dataModuleStyle instead')
- final Color? color; // the color of the dark squares
- /// The color of the non-squares (background).
- @Deprecated(
- 'You should use the background color value of your container widget')
- final Color? emptyColor; // the other color
- /// If set to false, the painter will leave a 1px gap between each of the
- /// squares.
- final bool gapless;
- /// The image data to embed (as an overlay) in the QR code. The image will
- /// be added to the center of the QR code.
- final ui.Image? embeddedImage;
- /// Styling options for the image overlay.
- final QrEmbeddedImageStyle? embeddedImageStyle;
- /// Styling option for QR Eye ball and frame.
- final QrEyeStyle eyeStyle;
- /// Styling option for QR data module.
- final QrDataModuleStyle dataModuleStyle;
- /// The base QR code data
- QrCode? _qr;
- /// QR Image renderer
- late QrImage _qrImage;
- /// This is the version (after calculating) that we will use if the user has
- /// requested the 'auto' version.
- late final int _calcVersion;
- /// The size of the 'gap' between the pixels
- double get _gapSize => 0.25.s;
- /// Cache for all of the [Paint] objects.
- final _paintCache = PaintCache();
- void _init(String data) {
- if (!QrVersions.isSupportedVersion(version)) {
- throw QrUnsupportedVersionException(version);
- }
- // configure and make the QR code data
- final validationResult = QrValidator.validate(
- data: data,
- version: version,
- errorCorrectionLevel: errorCorrectionLevel,
- );
- if (!validationResult.isValid) {
- throw validationResult.error!;
- }
- _qr = validationResult.qrCode;
- _calcVersion = _qr!.typeNumber;
- _initPaints();
- }
- void _initPaints() {
- // Initialize `QrImage` for rendering
- _qrImage = QrImage(_qr!);
- // Cache the pixel paint object. For now there is only one but we might
- // expand it to multiple later (e.g.: different colours).
- _paintCache.cache(
- Paint()..style = PaintingStyle.fill, QrCodeElement.codePixel);
- // Cache the empty pixel paint object. Empty color is deprecated and will go
- // away.
- _paintCache.cache(
- Paint()..style = PaintingStyle.fill, QrCodeElement.codePixelEmpty);
- // Cache the finder pattern painters. We'll keep one for each one in case
- // we want to provide customization options later.
- for (final position in FinderPatternPosition.values) {
- _paintCache.cache(Paint()..style = PaintingStyle.stroke,
- QrCodeElement.finderPatternOuter,
- position: position);
- _paintCache.cache(Paint()..style = PaintingStyle.stroke,
- QrCodeElement.finderPatternInner,
- position: position);
- _paintCache.cache(
- Paint()..style = PaintingStyle.fill, QrCodeElement.finderPatternDot,
- position: position);
- }
- }
- @override
- void paint(Canvas canvas, Size size) {
- // if the widget has a zero size side then we cannot continue painting.
- if (size.shortestSide == 0) {
- print("[QR] WARN: width or height is zero. You should set a 'size' value "
- "or nest this painter in a Widget that defines a non-zero size");
- return;
- }
- final paintMetrics = _PaintMetrics(
- containerSize: size.shortestSide,
- moduleCount: _qr!.moduleCount,
- gapSize: (gapless ? 0 : _gapSize),
- );
- // draw the finder pattern elements
- _drawFinderPatternItem(FinderPatternPosition.topLeft, canvas, paintMetrics);
- _drawFinderPatternItem(
- FinderPatternPosition.bottomLeft, canvas, paintMetrics);
- _drawFinderPatternItem(
- FinderPatternPosition.topRight, canvas, paintMetrics);
- // DEBUG: draw the inner content boundary
- // final paint = Paint()..style = ui.PaintingStyle.stroke;
- // paint.strokeWidth = 1;
- // paint.color = const Color(0x55222222);
- // canvas.drawRect(
- // Rect.fromLTWH(paintMetrics.inset, paintMetrics.inset,
- // paintMetrics.innerContentSize, paintMetrics.innerContentSize),
- // paint);
- double left;
- double top;
- final gap = !gapless ? _gapSize : 0;
- // get the painters for the pixel information
- final pixelPaint = _paintCache.firstPaint(QrCodeElement.codePixel);
- if (color != null) {
- pixelPaint!.color = color!;
- } else {
- pixelPaint!.color = dataModuleStyle.color!;
- }
- Paint? emptyPixelPaint;
- if (emptyColor != null) {
- emptyPixelPaint = _paintCache.firstPaint(QrCodeElement.codePixelEmpty);
- emptyPixelPaint!.color = emptyColor!;
- }
- for (var x = 0; x < _qr!.moduleCount; x++) {
- for (var y = 0; y < _qr!.moduleCount; y++) {
- // draw the finder patterns independently
- if (_isFinderPatternPosition(x, y)) continue;
- final paint = _qrImage.isDark(y, x) ? pixelPaint : emptyPixelPaint;
- if (paint == null) continue;
- // paint a pixel
- left = paintMetrics.inset + (x * (paintMetrics.pixelSize + gap));
- top = paintMetrics.inset + (y * (paintMetrics.pixelSize + gap));
- var pixelHTweak = 0.0;
- var pixelVTweak = 0.0;
- if (gapless && _hasAdjacentHorizontalPixel(x, y, _qr!.moduleCount)) {
- pixelHTweak = 0.5;
- }
- if (gapless && _hasAdjacentVerticalPixel(x, y, _qr!.moduleCount)) {
- pixelVTweak = 0.5;
- }
- final squareRect = Rect.fromLTWH(
- left,
- top,
- paintMetrics.pixelSize + pixelHTweak,
- paintMetrics.pixelSize + pixelVTweak,
- );
- if (dataModuleStyle.dataModuleShape == QrDataModuleShape.square) {
- canvas.drawRect(squareRect, paint);
- } else {
- final roundedRect = RRect.fromRectAndRadius(squareRect,
- Radius.circular(paintMetrics.pixelSize + pixelHTweak));
- canvas.drawRRect(roundedRect, paint);
- }
- }
- }
- if (embeddedImage != null) {
- final originalSize = Size(
- embeddedImage!.width.toDouble(),
- embeddedImage!.height.toDouble(),
- );
- final requestedSize =
- embeddedImageStyle != null ? embeddedImageStyle!.size : null;
- final imageSize = _scaledAspectSize(size, originalSize, requestedSize);
- final position = Offset(
- (size.width - imageSize.width) / 2.0,
- (size.height - imageSize.height) / 2.0,
- );
- // draw the image overlay.
- _drawImageOverlay(canvas, position, imageSize, embeddedImageStyle);
- }
- }
- bool _hasAdjacentVerticalPixel(int x, int y, int moduleCount) {
- if (y + 1 >= moduleCount) return false;
- return _qrImage.isDark(y + 1, x);
- }
- bool _hasAdjacentHorizontalPixel(int x, int y, int moduleCount) {
- if (x + 1 >= moduleCount) return false;
- return _qrImage.isDark(y, x + 1);
- }
- bool _isFinderPatternPosition(int x, int y) {
- final isTopLeft = (y < _finderPatternLimit && x < _finderPatternLimit);
- final isBottomLeft = (y < _finderPatternLimit &&
- (x >= _qr!.moduleCount - _finderPatternLimit));
- final isTopRight = (y >= _qr!.moduleCount - _finderPatternLimit &&
- (x < _finderPatternLimit));
- return isTopLeft || isBottomLeft || isTopRight;
- }
- void _drawFinderPatternItem(
- FinderPatternPosition position,
- Canvas canvas,
- _PaintMetrics metrics,
- ) {
- final totalGap = (_finderPatternLimit - 1) * metrics.gapSize;
- final radius = ((_finderPatternLimit * metrics.pixelSize) + totalGap) -
- metrics.pixelSize;
- final strokeAdjust = (metrics.pixelSize / 2.0);
- final edgePos =
- (metrics.inset + metrics.innerContentSize) - (radius + strokeAdjust);
- Offset offset;
- if (position == FinderPatternPosition.topLeft) {
- offset =
- Offset(metrics.inset + strokeAdjust, metrics.inset + strokeAdjust);
- } else if (position == FinderPatternPosition.bottomLeft) {
- offset = Offset(metrics.inset + strokeAdjust, edgePos);
- } else {
- offset = Offset(edgePos, metrics.inset + strokeAdjust);
- }
- // configure the paints
- final outerPaint = _paintCache.firstPaint(QrCodeElement.finderPatternOuter,
- position: position)!;
- outerPaint.strokeWidth = metrics.pixelSize;
- if (color != null) {
- outerPaint.color = color!;
- } else {
- outerPaint.color = eyeStyle.color!;
- }
- final innerPaint = _paintCache.firstPaint(QrCodeElement.finderPatternInner,
- position: position)!;
- innerPaint.strokeWidth = metrics.pixelSize;
- innerPaint.color = emptyColor ?? const Color(0x00ffffff);
- final dotPaint = _paintCache.firstPaint(QrCodeElement.finderPatternDot,
- position: position);
- if (color != null) {
- dotPaint!.color = color!;
- } else {
- dotPaint!.color = eyeStyle.color!;
- }
- final outerRect = Rect.fromLTWH(offset.dx, offset.dy, radius, radius);
- final innerRadius = radius - (2 * metrics.pixelSize);
- final innerRect = Rect.fromLTWH(offset.dx + metrics.pixelSize,
- offset.dy + metrics.pixelSize, innerRadius, innerRadius);
- final gap = metrics.pixelSize * 2;
- final dotSize = radius - gap - (2 * strokeAdjust);
- final dotRect = Rect.fromLTWH(offset.dx + metrics.pixelSize + strokeAdjust,
- offset.dy + metrics.pixelSize + strokeAdjust, dotSize, dotSize);
- if (eyeStyle.eyeShape == QrEyeShape.square) {
- canvas.drawRect(outerRect, outerPaint);
- canvas.drawRect(innerRect, innerPaint);
- canvas.drawRect(dotRect, dotPaint);
- } else {
- final roundedOuterStrokeRect =
- RRect.fromRectAndRadius(outerRect, Radius.circular(radius));
- canvas.drawRRect(roundedOuterStrokeRect, outerPaint);
- final roundedInnerStrokeRect =
- RRect.fromRectAndRadius(outerRect, Radius.circular(innerRadius));
- canvas.drawRRect(roundedInnerStrokeRect, innerPaint);
- final roundedDotStrokeRect =
- RRect.fromRectAndRadius(dotRect, Radius.circular(dotSize));
- canvas.drawRRect(roundedDotStrokeRect, dotPaint);
- }
- }
- bool _hasOneNonZeroSide(Size size) => size.longestSide > 0;
- Size _scaledAspectSize(
- Size widgetSize, Size originalSize, Size? requestedSize) {
- if (requestedSize != null && !requestedSize.isEmpty) {
- return requestedSize;
- } else if (requestedSize != null && _hasOneNonZeroSide(requestedSize)) {
- final maxSide = requestedSize.longestSide;
- final ratio = maxSide / originalSize.longestSide;
- return Size(ratio * originalSize.width, ratio * originalSize.height);
- } else {
- final maxSide = 0.25 * widgetSize.shortestSide;
- final ratio = maxSide / originalSize.longestSide;
- return Size(ratio * originalSize.width, ratio * originalSize.height);
- }
- }
- void _drawImageOverlay(
- Canvas canvas, Offset position, Size size, QrEmbeddedImageStyle? style) {
- final paint = Paint()
- ..isAntiAlias = true
- ..filterQuality = FilterQuality.high;
- if (style != null) {
- if (style.color != null) {
- paint.colorFilter = ColorFilter.mode(style.color!, BlendMode.srcATop);
- }
- }
- final srcSize =
- Size(embeddedImage!.width.toDouble(), embeddedImage!.height.toDouble());
- final src = Alignment.center.inscribe(srcSize, Offset.zero & srcSize);
- final dst = Alignment.center.inscribe(size, position & size);
- canvas.drawImageRect(embeddedImage!, src, dst, paint);
- }
- @override
- bool shouldRepaint(CustomPainter oldPainter) {
- if (oldPainter is QrPainter) {
- return errorCorrectionLevel != oldPainter.errorCorrectionLevel ||
- _calcVersion != oldPainter._calcVersion ||
- _qr != oldPainter._qr ||
- gapless != oldPainter.gapless ||
- embeddedImage != oldPainter.embeddedImage ||
- embeddedImageStyle != oldPainter.embeddedImageStyle ||
- eyeStyle != oldPainter.eyeStyle ||
- dataModuleStyle != oldPainter.dataModuleStyle;
- }
- return true;
- }
- /// Returns a [ui.Picture] object containing the QR code data.
- ui.Picture toPicture(double size) {
- final recorder = ui.PictureRecorder();
- final canvas = Canvas(recorder);
- paint(canvas, Size(size, size));
- return recorder.endRecording();
- }
- /// Returns the raw QR code [ui.Image] object.
- Future<ui.Image> toImage(double size,
- {ui.ImageByteFormat format = ui.ImageByteFormat.png}) async {
- return await toPicture(size).toImage(size.toInt(), size.toInt());
- }
- /// Returns the raw QR code image byte data.
- Future<ByteData?> toImageData(double size,
- {ui.ImageByteFormat format = ui.ImageByteFormat.png}) async {
- final image = await toImage(size, format: format);
- return image.toByteData(format: format);
- }
- }
- class _PaintMetrics {
- _PaintMetrics(
- {required this.containerSize,
- required this.gapSize,
- required this.moduleCount}) {
- _calculateMetrics();
- }
- final int moduleCount;
- final double containerSize;
- final double gapSize;
- late final double _pixelSize;
- double get pixelSize => _pixelSize;
- late final double _innerContentSize;
- double get innerContentSize => _innerContentSize;
- late final double _inset;
- double get inset => _inset;
- void _calculateMetrics() {
- final gapTotal = (moduleCount - 1) * gapSize;
- var pixelSize = (containerSize - gapTotal) / moduleCount;
- _pixelSize = (pixelSize * 2).roundToDouble() / 2;
- _innerContentSize = (_pixelSize * moduleCount) + gapTotal;
- _inset = (containerSize - _innerContentSize) / 2;
- }
- }
|