Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
1  
See similar question that may help: stackoverflow.com/questions/1998209/… – Scott W Jan 11 '10 at 18:45

3 Answers

up vote 17 down vote accepted

Could the Barcode Rendering Framework at Codeplex be of help?

share|improve this answer
3  
Hint - You need to download the source file in order to find some sample projects that show some examples. There doesn't appear to be anything on the website. – John M Oct 20 '11 at 19:03

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");
share|improve this answer
Very useful, thank you so much. – OammieR Mar 30 '12 at 4:11

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

share|improve this answer

protected by Will Aug 13 '10 at 17:55

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.