Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Barcode type: IATA 2 of 5 #177

Closed
rob313663 opened this issue Oct 21, 2023 · 2 comments
Closed

Barcode type: IATA 2 of 5 #177

rob313663 opened this issue Oct 21, 2023 · 2 comments
Assignees

Comments

@rob313663
Copy link
Contributor

rob313663 commented Oct 21, 2023

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 = "" };
    }
}

}`

@barnhill barnhill self-assigned this Apr 27, 2024
@barnhill
Copy link
Owner

Adding IATA2of5 here: #201

Going to push this out shortly if you want to give it a review.

@barnhill
Copy link
Owner

Added IATA 2 of 5 support in 3.1.0 https://github.com/barnhill/barcodelib/releases/tag/3.1.0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants