ZXing.PDF417.Internal.BarcodeMatrix.getScaledMatrix(int, int)

Here are the examples of the csharp api class ZXing.PDF417.Internal.BarcodeMatrix.getScaledMatrix(int, int) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

4 Examples 7

1. Example

Project: dp2
Source File: BarcodeMatrix.cs
View license
internal sbyte[][] getMatrix()
      {
         return getScaledMatrix(1, 1);
      }

2. Example

Project: dp2
Source File: BarcodeMatrix.cs
View license
internal sbyte[][] getScaledMatrix(int Scale)
      {
         return getScaledMatrix(Scale, Scale);
      }

3. Example

Project: ZXing.Net
Source File: BarcodeMatrix.cs
View license
internal sbyte[][] getMatrix()
      {
         return getScaledMatrix(1, 1);
      }

4. Example

Project: zxing-core
Source File: BarcodeMatrix.cs
View license
internal sbyte[][] getMatrix()
      {
         return getScaledMatrix(1, 1);
      }