com.google.zxing.pdf417.decoder.Decoder.decode(com.google.zxing.common.BitMatrix)

Here are the examples of the csharp api class com.google.zxing.pdf417.decoder.Decoder.decode(com.google.zxing.common.BitMatrix) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Example 7

1. Example

Project: ZXing-CSharp
Source File: Decoder.cs
public DecoderResult decode(bool[][] image)
		{
			int dimension = image.Length;
			BitMatrix bits = new BitMatrix(dimension);
			for (int i = 0; i < dimension; i++)
			{
				for (int j = 0; j < dimension; j++)
				{
					if (image[j][i])
					{
						bits.set_Renamed(j, i);
					}
				}
			}
			return decode(bits);
		}