Here are the examples of the csharp api class ZXing.PDF417.PDF417Reader.getMaxWidth(ResultPoint, ResultPoint) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.
2 Examples
0
1. Example
View licenseprivate static int getMaxCodewordWidth(ResultPoint[] p) { return Math.Max( Math.Max(getMaxWidth(p[0], p[4]), getMaxWidth(p[6], p[2])*PDF417Common.MODULES_IN_CODEWORD/ PDF417Common.MODULES_IN_STOP_PATTERN), Math.Max(getMaxWidth(p[1], p[5]), getMaxWidth(p[7], p[3])*PDF417Common.MODULES_IN_CODEWORD/ PDF417Common.MODULES_IN_STOP_PATTERN)); }
0
2. Example
View licenseprivate static int getMaxCodewordWidth(ResultPoint[] p) { return Math.Max( Math.Max(getMaxWidth(p[0], p[4]), getMaxWidth(p[6], p[2])*PDF417Common.MODULES_IN_CODEWORD/ PDF417Common.MODULES_IN_STOP_PATTERN), Math.Max(getMaxWidth(p[1], p[5]), getMaxWidth(p[7], p[3])*PDF417Common.MODULES_IN_CODEWORD/ PDF417Common.MODULES_IN_STOP_PATTERN)); }