Re: Print barcode in C#
Posted by: makaveil makaveil
Date: November 27, 2013 08:14PM

Hi Ryan,
You need to get a qr code library, or a qr code control to do this. Here I have one free evaluation qr generator, download and unzip it.
Then Copy the following C#.NET sample codings onto your project to create, produce a QR Code barcode image:

using KA.Barcode.Bean;

BarCode qrcode = new BarCode();
qrcode.Symbology = KeepAutomation.Barcode.Symbology.QRCode;
qrcode.CodeToEncode = "C#qrdemo";
qrcode.X = 3;
qrcode.Y = 3;
qrcode.generateBarcodeToImageFile("C:/qr_csharp.png");
Those qr codes can be printed in Pixel, Cm, Inch as units of measure in C#.NET programming.
Hope this helps.

Makaveil

Options: ReplyQuote


Subject
Written By
Posted
December 12, 2012 09:13PM
December 13, 2012 08:22AM
December 16, 2012 07:45PM
December 19, 2012 05:05AM
January 16, 2013 09:27PM
February 01, 2013 12:55AM
April 11, 2013 02:38AM
May 08, 2013 03:13AM
March 11, 2013 09:04PM
October 21, 2013 02:31AM
August 28, 2013 12:22AM
Re: Print barcode in C#
November 27, 2013 08:14PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.