C# 클래스 zxingwp7.pdf417.decoder.Decoder

The main class which implements PDF417 Code decoding -- as opposed to locating and extracting the PDF417 Code from an image.

파일 보기 프로젝트 열기: henningms/zxing2.0-wp7

공개 메소드들

메소드 설명
decode ( BitMatrix bits ) : DecoderResult

Decodes a PDF417 Code represented as a {@link BitMatrix}. A 1 or "true" is taken to mean a black module.

decode ( bool image ) : DecoderResult

Convenience method that can decode a PDF417 Code represented as a 2D array of booleans. "true" is taken to mean a black module.

비공개 메소드들

메소드 설명
correctErrors ( int codewords, int erasures, int numECCodewords ) : int

Given data and error-correction codewords received, possibly corrupted by errors, attempts to correct the errors in-place using Reed-Solomon error correction.

verifyCodewordCount ( int codewords, int numECCodewords ) : void

Verify that all is OK with the codeword array.

메소드 상세

decode() 공개 메소드

Decodes a PDF417 Code represented as a {@link BitMatrix}. A 1 or "true" is taken to mean a black module.

public decode ( BitMatrix bits ) : DecoderResult
bits zxingwp7.common.BitMatrix booleans representing white/black PDF417 Code modules ///
리턴 zxingwp7.common.DecoderResult

decode() 공개 메소드

Convenience method that can decode a PDF417 Code represented as a 2D array of booleans. "true" is taken to mean a black module.

public decode ( bool image ) : DecoderResult
image bool booleans representing white/black PDF417 modules ///
리턴 zxingwp7.common.DecoderResult