BizCode Barcode Generator for .NET Ultimate
The most robust & flexible barcode control 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 Micro QR Code in .NET Library
Micro QR Code is a variant of QR Code 2005 with a reduced number of overhead modules and a restricted range of sizes, which is mainly used to mark on parts and components and the applications where the space available for the symbol is severely restricted.
Micro QR Code for .NET Ultimate is a comprehensive .NET barcode control which easily add barcode generation and printing capabilities into .NET applications using C# or VB.NET class library. High quality barcode images could be generated in web applications, IIS, Winforms applications.
Micro QR Code Generating SDK helps users generate highly customizable Micro QR Code barcodes in .NET applications. Free trial version and optional C# or VB.NET code samples are provided to create and print Micro QR Code barcode images.
Micro QR Code for .NET Ultimate Features
Encodable CharactersSupport to encode:
 numeric data (digits 0 - 9);
 alphanumeric data (digits 0 - 9; upper case letters A - Z; nine other characters: space, $ % * + - . / : );
 byte data (default: ISO/IEC 8859-1; or other sets as otherwise defined);
 Kanji characters. Kanji characters in QR Code 2005 can be compacted into 13 bits.
Error Correction LevelMicro QR Code employs the Reed-Solomon error correction and allowing recovery of:
- L 7%
- M 15%
- Q 25%
Barcode SpecificationCreated Micro QR Code is accurate and compatible with QR Code barcode specification in ISO/IEC 18004
Image or GraphicsSave and print Micro QR Code barcodes in Png, Jpeg/Jpg, Gif, Tiff, Bmp image formats, as well as .NET graphic objects
Programming DevelopmentSupport Micro QR Code generation in .NET Winforms applications, ASP.NET Web Forms, .NET Class & Console application and IIS
.NET Framework Support.NET Framework 2.0/3.0/4.0 and Visual Studio .NET 2005/20008/2010
Micro 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 Micro QR Code Generator for .NET Ultimate
  1. Download 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 "microqrcode.aspx" and "microqrcode.aspx.cs" to the folder where your aspx pages are generating barcodes;
  4. Drag and drop the MicroQRCodeWebForm control into the Forms;
  5. 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 MicroQRCodeWinForm control into the Forms;
  4. Run the website and you will see a barcode image generated.
How to Generate Micro QR Code in .NET with C#, VB.NET Class?
Copy those following code to your .NET project:
using BusinessRefinery.Barcode;

MicroQRCode barcode = new MicroQRCode();
barcode.Code = "MicroQRCode";
barcode.Resolution = 104;
barcode.Rotate = Rotate.Rotate180;
barcode.Format = ImageFormat.Gif;
barcode.drawBarcode2ImageFile("c:/microqrcode-csharp.gif");
Dim barcode As BusinessRefinery.Barcode.MicroQRCode = 
New BusinessRefinery.Barcode.MicroQRCode()
barcode.Symbology = BusinessRefinery.Barcode.Symbology.MicroQRCode
barcode.Code = "MicroQRCode"
barcode.Resolution = 104
barcode.Rotate = BusinessRefinery.Barcode.Rotate.Rotate270
barcode.Format = System.Drawing.Imaging.ImageFormat.Gif
barcode.drawBarcode2ImageFile("c:/microqrcode -vb-net.gif")
How to Create Your Own Micro QR Code 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/microqrcode.aspx?code=MicroQRCode;
  4. Add an image tag into the web page to create Code 39 barcode image in html or aspx pages, e.g. <img src="http://localhost/br_barcode/microqrcode?code=MicroQRCode/>.
How to Draw Micro QR Code Barcodes to Image Files (GIF, JPEG, BMP, PNG, & TIFF)?
Copy those following code to your .NET project:
using BusinessRefinery.Barcode;

MicroQRCode barcode = new MicroQRCode();
barcode.Code = "MicroQRCode";
barcode.Format = ImageFormat.Gif;
barcode.drawBarcode2ImageFile("c:/microqrcode -csharp.gif");
Dim barcode As BusinessRefinery.Barcode.Linear = 
New BusinessRefinery.Barcode. MicroQRCode()
barcode.Symbology = BusinessRefinery.Barcode.Symbology.MicroQRCode
barcode.Code = "MicroQRCode"
barcode.Format = System.Drawing.Imaging.ImageFormat.Gif
barcode.drawBarcode2ImageFile("c:/microqrcode -vb-net.gif")
How to draw & print Micro QR Code barcodes to .NET objects like Graphics, Stream, Bitmap?
Copy those following code to your .NET project:
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