Wednesday, October 10, 2012

C# ZXing.Net Code 128 Bar Code Example


var writer = new BarcodeWriter
                {
                   Format = BarcodeFormat.CODE_128,
                   Options = new EncodingOptions
                                  {
                                     PureBarcode = true,
                                     Height = 100,
                                     Width = 300
                                  }
                            };
var image = writer.Write(content);

1 comment: