Uses of Class
com.google.zxing.common.BitMatrix
Package
Description
This is a small portion of zxing, including only what's required to generate QR codes.
-
Uses of BitMatrix in com.google.zxing
Modifier and TypeMethodDescriptionWriter.encode
(String contents, BarcodeFormat format, int width, int height) Encode a barcode using the default settings.Writer.encode
(String contents, BarcodeFormat format, int width, int height, Map<EncodeHintType, ?> hints) -
Uses of BitMatrix in com.google.zxing.client.j2se
Modifier and TypeMethodDescriptionstatic BufferedImage
MatrixToImageWriter.toBufferedImage
(BitMatrix matrix) Renders aBitMatrix
as an image, where "false" bits are rendered as white, and "true" bits are rendered as black.static BufferedImage
MatrixToImageWriter.toBufferedImage
(BitMatrix matrix, MatrixToImageConfig config) AsMatrixToImageWriter.toBufferedImage(BitMatrix)
, but allows customization of the output.static void
MatrixToImageWriter.writeToFile
(BitMatrix matrix, String format, File file) Deprecated.static void
MatrixToImageWriter.writeToFile
(BitMatrix matrix, String format, File file, MatrixToImageConfig config) static void
MatrixToImageWriter.writeToPath
(BitMatrix matrix, String format, Path file) Writes aBitMatrix
to a file with default configuration.static void
MatrixToImageWriter.writeToPath
(BitMatrix matrix, String format, Path file, MatrixToImageConfig config) AsMatrixToImageWriter.writeToFile(BitMatrix, String, File)
, but allows customization of the output.static void
MatrixToImageWriter.writeToStream
(BitMatrix matrix, String format, OutputStream stream) Writes aBitMatrix
to a stream with default configuration.static void
MatrixToImageWriter.writeToStream
(BitMatrix matrix, String format, OutputStream stream, MatrixToImageConfig config) AsMatrixToImageWriter.writeToStream(BitMatrix, String, OutputStream)
, but allows customization of the output. -
Uses of BitMatrix in com.google.zxing.common
-
Uses of BitMatrix in com.google.zxing.qrcode
Modifier and TypeMethodDescriptionQRCodeWriter.encode
(String contents, BarcodeFormat format, int width, int height) QRCodeWriter.encode
(String contents, BarcodeFormat format, int width, int height, Map<EncodeHintType, ?> hints) -
Uses of BitMatrix in com.google.zxing.qrcode.decoder
Modifier and TypeMethodDescription(package private) BitMatrix
Version.buildFunctionPattern()
See ISO 18004:2006 Annex E
MatrixToImageWriter.writeToPath(BitMatrix, String, Path)