Module bus.extra

Interface BitMatrixRender

All Known Implementing Classes:
AsciiArtRender, ImageRender, SVGRender

public interface BitMatrixRender
Interface for rendering a BitMatrix.
Since:
Java 17+
Author:
Kimi Liu
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    render(com.google.zxing.common.BitMatrix matrix, OutputStream out)
    Renders the given BitMatrix to the specified OutputStream.
  • Method Details

    • render

      void render(com.google.zxing.common.BitMatrix matrix, OutputStream out)
      Renders the given BitMatrix to the specified OutputStream.
      Parameters:
      matrix - The BitMatrix to render.
      out - The OutputStream to write the rendered output to.