paint method

  1. @override
void paint(
  1. Canvas canvas,
  2. Size size
)
override

Called whenever the object needs to paint. The given Canvas has its coordinate space configured such that the origin is at the top left of the box. The area of the box is the size of the size argument.

Paint operations should remain inside the given area. Graphical operations outside the bounds may be silently ignored, clipped, or not clipped. It may sometimes be difficult to guarantee that a certain operation is inside the bounds (e.g., drawing a rectangle whose size is determined by user inputs). In that case, consider calling Canvas.clipRect at the beginning of paint so everything that follows will be guaranteed to only draw within the clipped area.

Implementations should be wary of correctly pairing any calls to Canvas.save/Canvas.saveLayer and Canvas.restore, otherwise all subsequent painting on this canvas may be affected, with potentially hilarious but confusing results.

To paint text on a Canvas, use a TextPainter.

To paint an image on a Canvas:

  1. Obtain an ImageStream, for example by calling ImageProvider.resolve on an AssetImage or NetworkImage object.

  2. Whenever the ImageStream's underlying ImageInfo object changes (see ImageStream.addListener), create a new instance of your custom paint delegate, giving it the new ImageInfo object.

  3. In your delegate's paint method, call the Canvas.drawImage, Canvas.drawImageRect, or Canvas.drawImageNine methods to paint the ImageInfo.image object, applying the ImageInfo.scale value to obtain the correct rendering size.

Implementation

@override
void paint(Canvas canvas, Size size) {
  scannedText = "";

  final Paint background = Paint()
    ..color = const Color.fromARGB(153, 98, 152, 227);

  final Size boxSize = renderBox.size;

  final Offset offset = renderBox.localToGlobal(Offset.zero);
  var siz = getRatioHeight(rotation, size, absoluteImageSize);
  var siz1 = getRatioWidth(rotation, size, absoluteImageSize);

  var currentScannerBoxWidth = boxSize.width / siz1;
  var currentScannerBoxHeight = boxSize.height / siz;
  var currentXOffset = offset.dx * siz1;
  var currentYOffset = offset.dy * siz;

  final boxLeft = translateX(
      (currentScannerBoxWidth / boxLeftOff) + currentXOffset,
      rotation,
      size,
      absoluteImageSize);
  final boxTop = translateY(
      (currentScannerBoxHeight / boxTopOff) + currentYOffset,
      rotation,
      size,
      absoluteImageSize);
  final boxRight = translateX(
      (currentScannerBoxWidth + currentXOffset) -
          (currentScannerBoxWidth / boxRightOff),
      rotation,
      size,
      absoluteImageSize);
  final boxBottom = translateY(
      (currentScannerBoxHeight + currentYOffset) -
          (currentScannerBoxHeight / boxBottomOff),
      rotation,
      size,
      absoluteImageSize);

  final Paint paintbox = paintboxCustom ?? Paint()
    ..style = PaintingStyle.stroke
    ..strokeWidth = 2.0
    ..color = const Color.fromARGB(153, 102, 160, 241);
  canvas.drawRect(
    Rect.fromLTRB(boxLeft, boxTop, boxRight, boxBottom),
    paintbox,
  );
  List textBlocks = [];
  for (final textBunk in recognizedText.blocks) {
    for (final element in textBunk.lines) {
      for (final textBlock in element.elements) {
        final left = translateX(
            (textBlock.boundingBox.left), rotation, size, absoluteImageSize);
        final top = translateY(
            (textBlock.boundingBox.top), rotation, size, absoluteImageSize);
        final right = translateX(
            (textBlock.boundingBox.right), rotation, size, absoluteImageSize);

        if (left >= boxLeft &&
            right <= boxRight &&
            (top >= (boxTop + 15) && top <= (boxBottom - 20))) {
          textBlocks.add(textBlock);

          var parsedText = textBlock.text;
          scannedText += " ${textBlock.text}";

          final ParagraphBuilder builder = ParagraphBuilder(
            ParagraphStyle(
                textAlign: TextAlign.left,
                fontSize: 14,
                textDirection: TextDirection.ltr),
          );
          builder.pushStyle(
              ui.TextStyle(color: Colors.white, background: background));
          builder.addText(parsedText);
          builder.pop();

          canvas.drawParagraph(
            builder.build()
              ..layout(ParagraphConstraints(
                width: right - left,
              )),
            Offset(left, top),
          );
        }
      }
    }
  }
  if (getRawData != null) {
    getRawData!(textBlocks);
  }
  getScannedText(scannedText);
}