barcodelib icon indicating copy to clipboard operation
barcodelib copied to clipboard

Barcode type: IATA 2 of 5

Open rob313663 opened this issue 2 years ago • 0 comments

Suggestion, add the IATA 2 o 5 barcode. It should be really simple since the only difference is the start and stop patterns.

This is my implementation so far:

`using Robbar.Renderers;

namespace Robbar { public class IATA2of5 : Standard2of5 { public static new string SymbologyName { get; } = "IATA 2 of 5"; public static new string[] SymbologyAliasNames { get; } = { "Computer Identics 2 of 5", "Airline 2 of 5" };

    public IATA2of5()
    {
        StartCodeWord = new CodeWord() { Pattern = "bsb", Text = "" };
        StopCodeWord = new CodeWord() { Pattern = "Bsb", Text = "" };
    }
}

}`

rob313663 avatar Oct 21 '23 19:10 rob313663