Uses of Class
com.google.zxing.common.BitMatrix
-
Packages that use BitMatrix Package Description com.google.zxing This is a small portion of zxing, including only what's required to generate QR codes.com.google.zxing.client.j2se com.google.zxing.common com.google.zxing.qrcode com.google.zxing.qrcode.decoder -
-
Uses of BitMatrix in com.google.zxing
Methods in com.google.zxing that return BitMatrix Modifier and Type Method Description BitMatrixWriter. encode(String contents, BarcodeFormat format, int width, int height)Encode a barcode using the default settings.BitMatrixWriter. encode(String contents, BarcodeFormat format, int width, int height, Map<EncodeHintType,?> hints) -
Uses of BitMatrix in com.google.zxing.client.j2se
Methods in com.google.zxing.client.j2se with parameters of type BitMatrix Modifier and Type Method Description static BufferedImageMatrixToImageWriter. toBufferedImage(BitMatrix matrix)Renders aBitMatrixas an image, where "false" bits are rendered as white, and "true" bits are rendered as black.static BufferedImageMatrixToImageWriter. toBufferedImage(BitMatrix matrix, MatrixToImageConfig config)AsMatrixToImageWriter.toBufferedImage(BitMatrix), but allows customization of the output.static voidMatrixToImageWriter. writeToFile(BitMatrix matrix, String format, File file)Deprecated.static voidMatrixToImageWriter. writeToFile(BitMatrix matrix, String format, File file, MatrixToImageConfig config)static voidMatrixToImageWriter. writeToPath(BitMatrix matrix, String format, Path file)Writes aBitMatrixto a file with default configuration.static voidMatrixToImageWriter. writeToPath(BitMatrix matrix, String format, Path file, MatrixToImageConfig config)AsMatrixToImageWriter.writeToFile(BitMatrix, String, File), but allows customization of the output.static voidMatrixToImageWriter. writeToStream(BitMatrix matrix, String format, OutputStream stream)Writes aBitMatrixto a stream with default configuration.static voidMatrixToImageWriter. 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
Methods in com.google.zxing.common that return BitMatrix Modifier and Type Method Description BitMatrixBitMatrix. clone()static BitMatrixBitMatrix. parse(boolean[][] image)Interprets a 2D array of booleans as aBitMatrix, where "true" means an "on" bit.static BitMatrixBitMatrix. parse(String stringRepresentation, String setString, String unsetString)Methods in com.google.zxing.common with parameters of type BitMatrix Modifier and Type Method Description voidBitMatrix. xor(BitMatrix mask)Exclusive-or (XOR): Flip the bit in thisBitMatrixif the corresponding mask bit is set. -
Uses of BitMatrix in com.google.zxing.qrcode
Methods in com.google.zxing.qrcode that return BitMatrix Modifier and Type Method Description BitMatrixQRCodeWriter. encode(String contents, BarcodeFormat format, int width, int height)BitMatrixQRCodeWriter. encode(String contents, BarcodeFormat format, int width, int height, Map<EncodeHintType,?> hints) -
Uses of BitMatrix in com.google.zxing.qrcode.decoder
Methods in com.google.zxing.qrcode.decoder that return BitMatrix Modifier and Type Method Description (package private) BitMatrixVersion. buildFunctionPattern()See ISO 18004:2006 Annex E
-