Free Barcode API for .NET

C#ApiComponentsBarcode

C# Problem Overview


Is there a decent free API/component for printing barcodes in C#?

C# Solutions


Solution 1 - C#

Could the Barcode Rendering Framework at Codeplex GitHub be of help?

Solution 2 - C#

I do recommend BarcodeLibrary

Here is a small piece of code of how to use it.

        BarcodeLib.Barcode barcode = new BarcodeLib.Barcode()
        {
            IncludeLabel = true,
            Alignment = AlignmentPositions.CENTER,
            Width = 300,
            Height = 100,
            RotateFlipType = RotateFlipType.RotateNoneFlipNone,
            BackColor = Color.White,
            ForeColor = Color.Black,
        };

        Image img = barcode.Encode(TYPE.CODE128B, "123456789");

Solution 3 - C#

There is a "3 of 9" control on CodeProject: Barcode .NET Control

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionVaccanoView Question on Stackoverflow
Solution 1 - C#SvishView Answer on Stackoverflow
Solution 2 - C#Andrei SchneiderView Answer on Stackoverflow
Solution 3 - C#Rubens FariasView Answer on Stackoverflow