You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
1.3 KiB
C#

9 months ago
using System;
using System.Collections.Generic;
using System.Text;
namespace BarcodeLib.Symbologies
{
/// <summary>
/// Standard 2 of 5 encoding
/// Written by: Brad Barnhill
/// </summary>
class Standard2of5 : BarcodeCommon, IBarcode
{
private string[] S25_Code = { "11101010101110", "10111010101110", "11101110101010", "10101110101110", "11101011101010", "10111011101010", "10101011101110", "10101110111010", "11101010111010", "10111010111010" };
public Standard2of5(string input)
{
Raw_Data = input;
}//Standard2of5
/// <summary>
/// Encode the raw data using the Standard 2 of 5 algorithm.
/// </summary>
private string Encode_Standard2of5()
{
if (!CheckNumericOnly(Raw_Data))
Error("ES25-1: Numeric Data Only");
string result = "11011010";
foreach (char c in Raw_Data)
{
result += S25_Code[Int32.Parse(c.ToString())];
}//foreach
//add ending bars
result += "1101011";
return result;
}//Encode_Standard2of5
#region IBarcode Members
public string Encoded_Value
{
get { return Encode_Standard2of5(); }
}
#endregion
}
}