ZXing.PDF417.PDF417Writer.encode(System.String, BarcodeFormat, bool, int, int, int, int, int, int, Compaction)

Here are the examples of the csharp api class ZXing.PDF417.PDF417Writer.encode(System.String, BarcodeFormat, bool, int, int, int, int, int, int, Compaction) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Example 7

1. Example

Project: dp2
Source File: PDF417Writer.cs
View license
[Obsolete]
      public BitMatrix encode(String contents,
                               BarcodeFormat format,
                               bool compact,
                               int width,
                               int height,
                               int minCols,
                               int maxCols,
                               int minRows,
                               int maxRows,
                               Compaction compaction)
      {
         IDictionary<EncodeHintType, Object> hints = new Dictionary<EncodeHintType, Object>();
         hints[EncodeHintType.PDF417_COMPACT] = compact;
         hints[EncodeHintType.PDF417_COMPACTION] = compaction;
         hints[EncodeHintType.PDF417_DIMENSIONS] = new Dimensions(minCols, maxCols, minRows, maxRows);
         return encode(contents, format, width, height, hints);
      }