USPS Tray Label symbology ( USPS 25 Tray Label). This is in fact Interleaved 2 of 5 symbology with exactly 10 digits encoded: 5-digit Zip Code (the tray destination) and a 3-digit content identifier number(CIN), and a 2-digit USPS processing code.
Important: you can also use BarCode Windows Forms or Web ImageControl instead. To use the Windows Formscontrol in Visual Studio please open Toolbox and open “Bytescout Software” tab and drag-n-drop “BarCode” control into your WinForms or ASP.NET application (in design mode)
Visual Basic:
Imports Bytescout.BarCode
Module Module1
Sub Main()
‘ Create new barcode
Dim barcode As New Barcode()
‘ Set symbology
barcode.Symbology = SymbologyType.USPSTrayLabel
‘ Set value
barcode.Value = “1234567890”
‘ Save barcode to image
barcode.SaveImage(“result.png”)
‘ Show image in default image viewer
Process.Start(“result.png”)
End Sub
End Module
C#:
using System;
using System.Collections.Generic;
using System.Text;
using System.Diagnostics;
using Bytescout.BarCode;
namespace Sample
{
class Program
{
static void Main(string[] args)
{
// Create new barcode
Barcode barcode = new Barcode();
// Set symbology
barcode.Symbology = SymbologyType.USPSTrayLabel;
// Set value
barcode.Value = “1234567890”;
// Save barcode to image
barcode.SaveImage(“result.png”);
// Show image in default image viewer
Process.Start(“result.png”);
}
}
}