Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Free c# QR-Code generator [closed]

Tags:

c#

qr-code

I'm looking for a free to use c# library/code to create barcodes. Secifically I need to be able to create QR-Code type barcodes. I'm looking for free to use (Open Source or just Free, etc.) not pay to use.

like image 668
Justin808 Avatar asked Aug 11 '11 02:08

Justin808


1 Answers

Take a look QRCoder - pure C# open source QR code generator. Can be used in three lines of code

QRCodeGenerator qrGenerator = new QRCodeGenerator(); QRCodeGenerator.QRCode qrCode = qrGenerator.CreateQrCode(textBoxQRCode.Text, QRCodeGenerator.ECCLevel.Q); pictureBoxQRCode.BackgroundImage = qrCode.GetGraphic(20); 
like image 77
Igor Yalovoy Avatar answered Sep 28 '22 00:09

Igor Yalovoy