Uses of Class
com.google.zxing.FormatException

Packages that use FormatException
com.google.zxing   
com.google.zxing.aztec   
com.google.zxing.aztec.decoder   
com.google.zxing.datamatrix   
com.google.zxing.datamatrix.decoder   
com.google.zxing.maxicode   
com.google.zxing.maxicode.decoder   
com.google.zxing.multi   
com.google.zxing.oned   
com.google.zxing.pdf417   
com.google.zxing.pdf417.decoder   
com.google.zxing.qrcode   
com.google.zxing.qrcode.decoder   
com.google.zxing.qrcode.detector   
 

Uses of FormatException in com.google.zxing
 

Methods in com.google.zxing that return FormatException
static FormatException FormatException.getFormatInstance()
           
 

Methods in com.google.zxing that throw FormatException
 Result Reader.decode(BinaryBitmap image)
          Locates and decodes a barcode in some format within an image.
 Result Reader.decode(BinaryBitmap image, Map<DecodeHintType,?> hints)
          Locates and decodes a barcode in some format within an image.
 

Uses of FormatException in com.google.zxing.aztec
 

Methods in com.google.zxing.aztec that throw FormatException
 Result AztecReader.decode(BinaryBitmap image)
          Locates and decodes a Data Matrix code in an image.
 Result AztecReader.decode(BinaryBitmap image, Map<DecodeHintType,?> hints)
           
 

Uses of FormatException in com.google.zxing.aztec.decoder
 

Methods in com.google.zxing.aztec.decoder that throw FormatException
 DecoderResult Decoder.decode(AztecDetectorResult detectorResult)
           
 

Uses of FormatException in com.google.zxing.datamatrix
 

Methods in com.google.zxing.datamatrix that throw FormatException
 Result DataMatrixReader.decode(BinaryBitmap image)
          Locates and decodes a Data Matrix code in an image.
 Result DataMatrixReader.decode(BinaryBitmap image, Map<DecodeHintType,?> hints)
           
 

Uses of FormatException in com.google.zxing.datamatrix.decoder
 

Methods in com.google.zxing.datamatrix.decoder that throw FormatException
 DecoderResult Decoder.decode(BitMatrix bits)
          Decodes a Data Matrix Code represented as a BitMatrix.
 DecoderResult Decoder.decode(boolean[][] image)
          Convenience method that can decode a Data Matrix Code represented as a 2D array of booleans.
static Version Version.getVersionForDimensions(int numRows, int numColumns)
          Deduces version information from Data Matrix dimensions.
 

Uses of FormatException in com.google.zxing.maxicode
 

Methods in com.google.zxing.maxicode that throw FormatException
 Result MaxiCodeReader.decode(BinaryBitmap image)
          Locates and decodes a MaxiCode in an image.
 Result MaxiCodeReader.decode(BinaryBitmap image, Map<DecodeHintType,?> hints)
           
 

Uses of FormatException in com.google.zxing.maxicode.decoder
 

Methods in com.google.zxing.maxicode.decoder that throw FormatException
 DecoderResult Decoder.decode(BitMatrix bits)
           
 DecoderResult Decoder.decode(BitMatrix bits, Map<DecodeHintType,?> hints)
           
 

Uses of FormatException in com.google.zxing.multi
 

Methods in com.google.zxing.multi that throw FormatException
 Result ByQuadrantReader.decode(BinaryBitmap image)
           
 Result ByQuadrantReader.decode(BinaryBitmap image, Map<DecodeHintType,?> hints)
           
 

Uses of FormatException in com.google.zxing.oned
 

Methods in com.google.zxing.oned that throw FormatException
protected  boolean UPCEReader.checkChecksum(String s)
           
 Result UPCAReader.decode(BinaryBitmap image)
           
 Result OneDReader.decode(BinaryBitmap image)
           
 Result UPCAReader.decode(BinaryBitmap image, Map<DecodeHintType,?> hints)
           
 Result OneDReader.decode(BinaryBitmap image, Map<DecodeHintType,?> hints)
           
 Result UPCEANReader.decodeRow(int rowNumber, BitArray row, int[] startGuardRange, Map<DecodeHintType,?> hints)
          Like UPCEANReader.decodeRow(int, BitArray, java.util.Map), but allows caller to inform method about where the UPC/EAN start pattern is found.
 Result UPCAReader.decodeRow(int rowNumber, BitArray row, int[] startGuardRange, Map<DecodeHintType,?> hints)
           
 Result UPCEANReader.decodeRow(int rowNumber, BitArray row, Map<DecodeHintType,?> hints)
           
 Result UPCAReader.decodeRow(int rowNumber, BitArray row, Map<DecodeHintType,?> hints)
           
abstract  Result OneDReader.decodeRow(int rowNumber, BitArray row, Map<DecodeHintType,?> hints)
          Attempts to decode a one-dimensional barcode format given a single row of an image.
 Result ITFReader.decodeRow(int rowNumber, BitArray row, Map<DecodeHintType,?> hints)
           
 Result Code93Reader.decodeRow(int rowNumber, BitArray row, Map<DecodeHintType,?> hints)
           
 Result Code39Reader.decodeRow(int rowNumber, BitArray row, Map<DecodeHintType,?> hints)
           
 Result Code128Reader.decodeRow(int rowNumber, BitArray row, Map<DecodeHintType,?> hints)
           
 

Uses of FormatException in com.google.zxing.pdf417
 

Methods in com.google.zxing.pdf417 that throw FormatException
 Result PDF417Reader.decode(BinaryBitmap image)
          Locates and decodes a PDF417 code in an image.
 Result PDF417Reader.decode(BinaryBitmap image, Map<DecodeHintType,?> hints)
           
 

Uses of FormatException in com.google.zxing.pdf417.decoder
 

Methods in com.google.zxing.pdf417.decoder that throw FormatException
 DecoderResult Decoder.decode(BitMatrix bits)
          Decodes a PDF417 Code represented as a BitMatrix.
 DecoderResult Decoder.decode(boolean[][] image)
          Convenience method that can decode a PDF417 Code represented as a 2D array of booleans.
 

Uses of FormatException in com.google.zxing.qrcode
 

Methods in com.google.zxing.qrcode that throw FormatException
 Result QRCodeReader.decode(BinaryBitmap image)
          Locates and decodes a QR code in an image.
 Result QRCodeReader.decode(BinaryBitmap image, Map<DecodeHintType,?> hints)
           
 

Uses of FormatException in com.google.zxing.qrcode.decoder
 

Methods in com.google.zxing.qrcode.decoder that throw FormatException
 DecoderResult Decoder.decode(BitMatrix bits)
           
 DecoderResult Decoder.decode(BitMatrix bits, Map<DecodeHintType,?> hints)
          Decodes a QR Code represented as a BitMatrix.
 DecoderResult Decoder.decode(boolean[][] image)
           
 DecoderResult Decoder.decode(boolean[][] image, Map<DecodeHintType,?> hints)
          Convenience method that can decode a QR Code represented as a 2D array of booleans.
static Version Version.getProvisionalVersionForDimension(int dimension)
          Deduces version information purely from QR Code dimensions.
 

Uses of FormatException in com.google.zxing.qrcode.detector
 

Methods in com.google.zxing.qrcode.detector that throw FormatException
 DetectorResult Detector.detect()
          Detects a QR Code in an image, simply.
 DetectorResult Detector.detect(Map<DecodeHintType,?> hints)
          Detects a QR Code in an image, simply.
protected  DetectorResult Detector.processFinderPatternInfo(FinderPatternInfo info)
           
 



Copyright © 2007-2012. All Rights Reserved.