C# 클래스 zxingwp7.MultiFormatReader

MultiFormatReader is a convenience class and the main entry point into the library for most uses. By default it attempts to decode all barcode formats that the library supports. Optionally, you can provide a hints object to request different behavior, for example only decoding QR codes.
상속: Reader
파일 보기 프로젝트 열기: henningms/zxing2.0-wp7

공개 메소드들

메소드 설명
decode ( BinaryBitmap image ) : Result

This version of decode honors the intent of Reader.decode(BinaryBitmap) in that it passes null as a hint to the decoders. However, that makes it inefficient to call repeatedly. Use setHints() followed by decodeWithState() for continuous scan applications.

decode ( BinaryBitmap image, Object>.Dictionary hints ) : Result

Decode an image using the hints provided. Does not honor existing state.

decodeWithState ( BinaryBitmap image ) : Result

Decode an image using the state set up by calling setHints() previously. Continuous scan clients will get a large speed increase by using this instead of decode().

비공개 메소드들

메소드 설명
decodeInternal ( BinaryBitmap image ) : Result

메소드 상세

decode() 공개 메소드

This version of decode honors the intent of Reader.decode(BinaryBitmap) in that it passes null as a hint to the decoders. However, that makes it inefficient to call repeatedly. Use setHints() followed by decodeWithState() for continuous scan applications.
public decode ( BinaryBitmap image ) : Result
image BinaryBitmap The pixel data to decode ///
리턴 Result

decode() 공개 메소드

Decode an image using the hints provided. Does not honor existing state.
public decode ( BinaryBitmap image, Object>.Dictionary hints ) : Result
image BinaryBitmap The pixel data to decode ///
hints Object>.Dictionary The hints to use, clearing the previous state. ///
리턴 Result

decodeWithState() 공개 메소드

Decode an image using the state set up by calling setHints() previously. Continuous scan clients will get a large speed increase by using this instead of decode().
public decodeWithState ( BinaryBitmap image ) : Result
image BinaryBitmap The pixel data to decode ///
리턴 Result