Uses of Class
com.google.zxing.BinaryBitmap
-
-
Uses of BinaryBitmap in com.google.zxing
Methods in com.google.zxing that return BinaryBitmap Modifier and Type Method Description BinaryBitmap
BinaryBitmap. crop(int left, int top, int width, int height)
Returns a new object with cropped image data.BinaryBitmap
BinaryBitmap. rotateCounterClockwise()
Returns a new object with rotated image data by 90 degrees counterclockwise.BinaryBitmap
BinaryBitmap. rotateCounterClockwise45()
Returns a new object with rotated image data by 45 degrees counterclockwise.Methods in com.google.zxing with parameters of type BinaryBitmap Modifier and Type Method Description Result
MultiFormatReader. decode(BinaryBitmap image)
This version of decode honors the intent of Reader.decode(BinaryBitmap) in that it passes null as a hint to the decoders.Result
MultiFormatReader. decode(BinaryBitmap image, java.util.Map<DecodeHintType,?> hints)
Decode an image using the hints provided.Result
Reader. decode(BinaryBitmap image)
Locates and decodes a barcode in some format within an image.Result
Reader. decode(BinaryBitmap image, java.util.Map<DecodeHintType,?> hints)
Locates and decodes a barcode in some format within an image.private Result
MultiFormatReader. decodeInternal(BinaryBitmap image)
Result
MultiFormatReader. decodeWithState(BinaryBitmap image)
Decode an image using the state set up by calling setHints() previously. -
Uses of BinaryBitmap in com.google.zxing.aztec
Methods in com.google.zxing.aztec with parameters of type BinaryBitmap Modifier and Type Method Description Result
AztecReader. decode(BinaryBitmap image)
Locates and decodes a Data Matrix code in an image.Result
AztecReader. decode(BinaryBitmap image, java.util.Map<DecodeHintType,?> hints)
-
Uses of BinaryBitmap in com.google.zxing.client.j2se
Methods in com.google.zxing.client.j2se with parameters of type BinaryBitmap Modifier and Type Method Description private static void
DecodeWorker. dumpBlackPoint(java.net.URI uri, java.awt.image.BufferedImage image, BinaryBitmap bitmap)
Writes out a single PNG which is three times the width of the input image, containing from left to right: the original image, the row sampling monochrome version, and the 2D sampling monochrome version. -
Uses of BinaryBitmap in com.google.zxing.datamatrix
Methods in com.google.zxing.datamatrix with parameters of type BinaryBitmap Modifier and Type Method Description Result
DataMatrixReader. decode(BinaryBitmap image)
Locates and decodes a Data Matrix code in an image.Result
DataMatrixReader. decode(BinaryBitmap image, java.util.Map<DecodeHintType,?> hints)
-
Uses of BinaryBitmap in com.google.zxing.maxicode
Methods in com.google.zxing.maxicode with parameters of type BinaryBitmap Modifier and Type Method Description Result
MaxiCodeReader. decode(BinaryBitmap image)
Locates and decodes a MaxiCode in an image.Result
MaxiCodeReader. decode(BinaryBitmap image, java.util.Map<DecodeHintType,?> hints)
-
Uses of BinaryBitmap in com.google.zxing.multi
Methods in com.google.zxing.multi with parameters of type BinaryBitmap Modifier and Type Method Description Result
ByQuadrantReader. decode(BinaryBitmap image)
Result
ByQuadrantReader. decode(BinaryBitmap image, java.util.Map<DecodeHintType,?> hints)
Result[]
GenericMultipleBarcodeReader. decodeMultiple(BinaryBitmap image)
Result[]
GenericMultipleBarcodeReader. decodeMultiple(BinaryBitmap image, java.util.Map<DecodeHintType,?> hints)
Result[]
MultipleBarcodeReader. decodeMultiple(BinaryBitmap image)
Result[]
MultipleBarcodeReader. decodeMultiple(BinaryBitmap image, java.util.Map<DecodeHintType,?> hints)
private void
GenericMultipleBarcodeReader. doDecodeMultiple(BinaryBitmap image, java.util.Map<DecodeHintType,?> hints, java.util.List<Result> results, int xOffset, int yOffset, int currentDepth)
-
Uses of BinaryBitmap in com.google.zxing.multi.qrcode
Methods in com.google.zxing.multi.qrcode with parameters of type BinaryBitmap Modifier and Type Method Description Result[]
QRCodeMultiReader. decodeMultiple(BinaryBitmap image)
Result[]
QRCodeMultiReader. decodeMultiple(BinaryBitmap image, java.util.Map<DecodeHintType,?> hints)
-
Uses of BinaryBitmap in com.google.zxing.oned
Methods in com.google.zxing.oned with parameters of type BinaryBitmap Modifier and Type Method Description Result
OneDReader. decode(BinaryBitmap image)
Result
OneDReader. decode(BinaryBitmap image, java.util.Map<DecodeHintType,?> hints)
Result
UPCAReader. decode(BinaryBitmap image)
Result
UPCAReader. decode(BinaryBitmap image, java.util.Map<DecodeHintType,?> hints)
private Result
OneDReader. doDecode(BinaryBitmap image, java.util.Map<DecodeHintType,?> hints)
We're going to examine rows from the middle outward, searching alternately above and below the middle, and farther out each time. -
Uses of BinaryBitmap in com.google.zxing.pdf417
Methods in com.google.zxing.pdf417 with parameters of type BinaryBitmap Modifier and Type Method Description Result
PDF417Reader. decode(BinaryBitmap image)
Locates and decodes a PDF417 code in an image.Result
PDF417Reader. decode(BinaryBitmap image, java.util.Map<DecodeHintType,?> hints)
private static Result[]
PDF417Reader. decode(BinaryBitmap image, java.util.Map<DecodeHintType,?> hints, boolean multiple)
Result[]
PDF417Reader. decodeMultiple(BinaryBitmap image)
Result[]
PDF417Reader. decodeMultiple(BinaryBitmap image, java.util.Map<DecodeHintType,?> hints)
-
Uses of BinaryBitmap in com.google.zxing.pdf417.detector
Methods in com.google.zxing.pdf417.detector with parameters of type BinaryBitmap Modifier and Type Method Description static PDF417DetectorResult
Detector. detect(BinaryBitmap image, java.util.Map<DecodeHintType,?> hints, boolean multiple)
Detects a PDF417 Code in an image. -
Uses of BinaryBitmap in com.google.zxing.qrcode
Methods in com.google.zxing.qrcode with parameters of type BinaryBitmap Modifier and Type Method Description Result
QRCodeReader. decode(BinaryBitmap image)
Locates and decodes a QR code in an image.Result
QRCodeReader. decode(BinaryBitmap image, java.util.Map<DecodeHintType,?> hints)
-