Here are the examples of the csharp api class ZXing.PDF417.PDF417Reader.decode(BinaryBitmap, System.Collections.Generic.IDictionary, bool) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.
4 Examples
0
1. Example
View licensepublic Result decode(BinaryBitmap image, IDictionary<DecodeHintType, object> hints) { Result[] results = decode(image, hints, false); if (results.Length == 0) { return null; } else { return results[0]; // First barcode discovered. } }
0
2. Example
View licensepublic Result[] decodeMultiple(BinaryBitmap image, IDictionary<DecodeHintType, object> hints) { return decode(image, hints, true); }
0
3. Example
View licensepublic Result decode(BinaryBitmap image, IDictionary<DecodeHintType, object> hints) { Result[] results = decode(image, hints, false); if (results.Length == 0) { return null; } else { return results[0]; // First barcode discovered. } }
0
4. Example
View licensepublic Result[] decodeMultiple(BinaryBitmap image, IDictionary<DecodeHintType, object> hints) { return decode(image, hints, true); }