BizCode Generator for .NET Ultimate
The most mature & flexible barcode SDK for Microsoft .NET Framework
Quick Overviews
  • Mature barcode creating SDK
  • Support every .NET IDEs
  • Support C#, VB.NET, etc.
  • Dynamic barcodes support
  • For all printers
How to Generate QR Code in .NET Library
QR Code (Denso Barcode, QRCode, Quick Response Code) is a matrix code (or two-dimensional bar code) created by Japanese corporation Denso-Wave in 1994. The "QR" is derived from "Quick Response", as the creator intended the code to allow its contents to be decoded at high speed.
.NET QR Code Generator SDK is a powerful .NET barcode generating component used for creating QR Code barcode in .NET programs. It supports C#, Visual Basic .NET, managed C++ and Delphi .NET programming language and other development environment supported by .NET Framework.
With QR Code for .NET Ultimate, users may easily convert input data into QR Code and customize QR Code barcodes according to their needs. Complete barcode options are provided over module width, image width, color, rotation, resolution, text, etc. Besides, user may encode special QR Code under its barcode specification with this product.
QR Code for .NET Ultimate Features
Encodable CharactersSupport to encode:
- Numeric characters
- Alphanumeric data
- Byte characters
- Kanji characters
Barcode SpecificationCompatible with QR Code barcode specification in ISO; Also support to create GS1 compatible QR Code barcodes
Programming DevelopmentSupport QR Code generation in .NET Winforms applications, ASP.NET Web Forms, .NET Class & Console application and IIS
Multiple Programming LanguageCompletely written in VB.NET, Visual C#.NET, Managed C++ and Borland Delphi for .NET
Image or GraphicsGenerate and print QR Code images in Png, Jpeg/Jpg, Gif, Tiff, Bmp formats, in stream object, in graphics object
Size AdjustmentsMultiple barcode setting options for you to select, including module width, image width, color, rotation, resolution, text, etc
QR Code for .NET Ultimate Requirements
Windows OS
- Microsoft Windows 7
- Windows Server 2008
- Windows Vista
- Windows Server 2003
- Windows XP
Development Environments
- .NET 2.0/3.0/4.0
- C#, Visual Basic, Managed C++ and Borland Delphi.NET
- Visual Studio 2005/2008/2010
- .NET Windows Forms Application
- .NET Class and Console Applications
- ASP.NET Web Forms
- .NET SSRS and Crystal Report
Install QR Code Generator for .NET Ultimate
  1. Download BizCode Generator for .NET Ultimate and unzip;
  2. Add reference: Add "BusinessRefinery.Barcode.Web.dll" or "BusinessRefinery.Barcode.Win.dll" to your project reference;
  3. Add to toolbox: To add Barcode Control to your .NET Winforms or ASP.NET Web Forms toolbox.
How to Drag & Drop Barcode Control into ASP.NET projects?
  1. Install ASP.NET Barcode Control;
  2. Add ASP.NET Barcode Control onto your .NET Visual Studio Toolbox;
  3. Copy "qrcode.aspx" and "qrcode.aspx.cs" to the folder where your aspx pages are generating barcodes;
  4. Run the website and you will see a barcode image generated.
How to Drag & Drop Barcode Control into .NET Winforms projects?
  1. Install .NET Winforms Barcode Control;
  2. Add .NET Winforms Barcode Control onto your .NET Visual Studio Toolbox;
  3. Drag and drop the WinQRCode control into the Forms;
  4. Run the website and you will see a barcode image generated.
How to Generate QR Code in .NET with C#, VB.NET Class?
Copy those following sample code to your .NET projects:
using BusinessRefinery.Barcode;
QRCode barcode = new QRCode();
barcode.Code = "QR Code";
barcode.Resolution = 104;
barcode.Rotate = Rotate.Rotate180;
barcode.Format = ImageFormat.Gif;
barcode.drawBarcode2ImageFile("c:/qr-code-csharp.gif");
Dim barcode As BusinessRefinery.Barcode.QRCode = 
New BusinessRefinery.Barcode.QRCode()
barcode.Code = "QR Code"
barcode.Resolution = 104
barcode.Rotate = BusinessRefinery.Barcode.Rotate.Rotate270
barcode.Format = System.Drawing.Imaging.ImageFormat.Gif
barcode.drawBarcode2ImageFile("c:/qr-code-vb-net.gif")
How to Create Your Own QR Code Barcodes in IIS?
  1. Download BizCode Generator for .NET Ultimate and unzip;
  2. Copy the whole barcode fold and contents into IIS and create a new virtual directory called "br_barcode";
  3. Restart IIS, navigate to http://localhost/br_barcode/qrcode.aspx?code=0123456789;
  4. Add an image tag <img> into the web page to create QR Code barcode image in html or aspx pages, e.g.
    <img src="http://localhost/br_barcode/qrcode.aspx?code=0123456789"/>
    .
How to Draw QR CODE Barcodes to Image Files (GIF, JPEG, BMP, PNG, & TIFF)?
Copy those following sample code to your .NET projects:
using BusinessRefinery.Barcode;
QRCode barcode = new QRCode();
barcode.Code = "QR Code";
barcode.Format = ImageFormat.Gif;
barcode.drawBarcode2ImageFile("c:/qr-code-csharp.gif");
Dim barcode As BusinessRefinery.Barcode.QRCode = 
New BusinessRefinery.Barcode.QRCode()
barcode.Code = "QR Code"
barcode.Format = System.Drawing.Imaging.ImageFormat.Gif
barcode.drawBarcode2ImageFile("c:/qr-code-vb-net.gif")
How to draw & print QR CODE barcodes to .NET objects like Graphics, Stream, Bitmap?
Copy those following sample code to your .NET projects:
public void drawBarcode2ImageFile(string filename);
public void drawBarcode2Stream(Stream fileStream);
public byte[] drawBarcodeAsBytes();
public Bitmap drawBarcodeOnBitmap();
public void drawBarcodeOnGraphics(Graphics graphics);
Public Sub drawBarcode2Stream(ByVal fileStream As System.IO.Stream)
Public Sub drawBarcodeOnGraphics(ByVal graphics As
System.Drawing.Graphics)
Public Function drawBarcodeAsBytes() As Byte()
Public Function drawBarcodeOnBitmap() As System.Drawing.Bitmap