Intelligent Mail VB.NET Generator is a mature barcode component, providing an easy but professional way to generate and draw dynamic Intelligent Mail barcodes in .NET projects using Visual Basic.NET. Multiple image formats are provided to save generated Intelligent Mail into GIF, BMP, PNG, JPEG, TIFF, etc.
how to read data from barcode scanner in c# web application,
how to generate barcode in asp.net using c#,
microsoft barcode control excel 2010,
barcode generator c# open source,
barcode project in vb.net,
how to read from barcode scanner in c#
Intelligent Mail is also named as USPS Intelligent Mail Barcode, OneCode 4CB, USPS 4CB, USPS OneCode Solution Barcode, USPS IM. It is a postal barcode adopted by United State Postal Service domestic mail delivery.
Dim onecode As KeepAutomation.Barcode.Bean.BarCode = New KeepAutomation.Barcode.Bean.BarCode
onecode.Symbology = KeepAutomation.Barcode.Symbology.Onecode
' Set Intelligent Mail valid data: 0-9. Length: 20, 25, 29 or 31 digits only.
onecode.CodeToEncode = "12345678901234567890"
' Onecode unit of measure: pixel, cm and inch
onecode.BarcodeUnit = KeepAutomation.Barcode.BarcodeUnit.Pixel
' Onecode image resolution in dpi
onecode.DPI = 72
' Onecode size settings properties
' Onecode module bar width (X dimention), default is 1 pixel.
onecode.X = 2
' Onecode barcode image width
onecode.BarCodeWidth = 320
' Onecode image margin size, minimum value is 2X on four sides according to specification.
onecode.LeftMargin = 4
onecode.RightMargin = 4
onecode.TopMargin = 4
onecode.BottomMargin = 4
' Onecode image orientation, 0, 90, 180, 270 degrees supported.
onecode.Orientation = KeepAutomation.Barcode.Orientation.Degree90
' Set Intelligent Mail human-readable text style
onecode.DisplayText = true
onecode.TextFont = new Font("Arial", 10f, FontStyle.Regular)
onecode.TextMargin = 7
' Print and save Onecode bar codes in Png, Gif, Jpeg/Jpg, Tiff, Bmp image formats.
onecode.ImageFormat = System.Drawing.Imaging.ImageFormat.Png
onecode.generateBarcodeToImageFile("C://onecode_in_vb.png")