ZXing.PDF417.PDF417Reader.decode(BinaryBitmap, System.Collections.Generic.IDictionary, bool)

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 7

1. Example

Project: ZXing.Net
Source File: PDF417Reader.cs
View license
public 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.
         }
      }

2. Example

Project: ZXing.Net
Source File: PDF417Reader.cs
View license
public Result[] decodeMultiple(BinaryBitmap image,
                                     IDictionary<DecodeHintType, object> hints)
      {
         return decode(image, hints, true);
      }

3. Example

Project: zxing-core
Source File: PDF417Reader.cs
View license
public 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.
         }
      }

4. Example

Project: zxing-core
Source File: PDF417Reader.cs
View license
public Result[] decodeMultiple(BinaryBitmap image,
                                     IDictionary<DecodeHintType, object> hints)
      {
         return decode(image, hints, true);
      }