How to Generate MicroPDF-417 in .NET Library
MicroPDF-417 is a multi-row barcode symbology which is able to encode a moderate amount of data in a two-dimensional symbol, and when minimizing symbol size is a primary concern. MicroPDF417 is identical to PDF417 in terms of its encoding modes, error correction method, and symbol character sets.
MicroPDF-417 for .NET Ultimate helps .NET users to create and print high quality MicroPDF-417 barcode symbology in .NET applications like web applications, IIS, Windows Form using C#, Visual Basic class library.
MicroPDF-417 Generating SDK helps users generate and print highly customizable MicroPDF-417 barcodes in .NET applications. Perpetual license and C# source code fully written in .NET 2.0 are provided in purchased version.
MicroPDF-417 for .NET Ultimate Features
Encodable Characters | Encodable Characters Support to encode: - Standard ASCII characters 0-127 (default: ISO/IEC 646) - Extended ASCII characters 128-255 (default: ISO/IEC 8859-1)
|
Extended Channel Interpretations | MicroPDF417 will frequently be used in conjunction with a Transformation ECI appropriate for the data requirements of the application. |
Barcode Specification | Created MicroPDF-417 is extremely accurate and should conform to MicroPDF-417 barcode specification in ISO/IEC 24728: 2006 |
Size Adjustments | Size Adjustments Flexible sizing options include MicroPDF-417 barcode width & height, margins, front and back ground colors and other properties via VB or C#.NET codes |
Programming Development | Easy to generate and print MicroPDF-417 barcodes in .NET Winforms applications, ASP.NET Web Forms, .NET Class & Console application and IIS |
Image Customization | Save and print MicroPDF-417 images in high and low resolution to support all printers |
MicroPDF-417 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 MicroPDF-417 Generator for .NET Ultimate
- Download Download BizCode Generator for .NET Ultimate and unzip;
- Add reference: Add "BusinessRefinery.Barcode.Web.dll" or "BusinessRefinery.Barcode.Win.dll" to your project reference;
- 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?
- Install ASP.NET Barcode Control;
- Add ASP.NET Barcode Control onto your .NET Visual Studio Toolbox;
- Copy "micropdf417.aspx" and "micropdf417.aspx.cs" to the folder where your aspx pages are generating barcodes;
- Drag and drop the MicroPDF417WebForm control into the Forms;
- Run the website and you will see a barcode image generated.
How to Drag & Drop Barcode Control into .NET Winforms projects?
- Install .NET Winforms Barcode Control;
- Add .NET Winforms Barcode Control onto your .NET Visual Studio Toolbox;
- Drag and drop the MicroPDF417WinForm control into the Forms;
- Run the website and you will see a barcode image generated.
How to Generate MicroPDF-417 in .NET with C#, VB.NET Class?
Copy those following code to your .NET project:
using BusinessRefinery.Barcode;
MicroQRCode barcode = new MicroPDF417();
barcode.Code = "MicroPDF417";
barcode.Resolution = 96;
barcode.Format = ImageFormat.Gif;
barcode.drawBarcode2ImageFile("c:/micropdf417-csharp.gif");
Dim barcode As BusinessRefinery.Barcode.MicroPDF417 =
New BusinessRefinery.Barcode.MicroPDF417 ()
barcode.MicroPDF417 = BusinessRefinery.Barcode.Symbology.MicroPDF417
barcode.Code = "MicroPDF417"
barcode.Resolution = 96
barcode.Format = System.Drawing.Imaging.ImageFormat.Gif
barcode.drawBarcode2ImageFile("c:/micropdf417 -vb-net.gif")
How to Create Your Own MicroPDF-417 in IIS?
- Download BizCode Generator for .NET Ultimate and unzip;
- Copy the whole barcode fold and contents into IIS and create a new virtual directory called "br_barcode";
- Restart IIS, navigate to http://localhost/br_barcode/micropdf417.aspx?code=MicroQRCode;
- 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/micropdf417.aspx?code=MicroQRCode &symbology=47"/>.
How to Draw MicroPDF-417 Barcodes to Image Files (GIF, JPEG, BMP, PNG, & TIFF)?
Copy those following code to your .NET project:
using BusinessRefinery.Barcode;
MicroQRCode barcode = new MicroPDF417();
barcode.Code = "MicroPDF417";
barcode.Format = ImageFormat.Gif;
barcode.drawBarcode2ImageFile("c:/micropdf417-csharp.gif");
Dim barcode As BusinessRefinery.Barcode.MicroPDF417 =
New BusinessRefinery.Barcode.MicroPDF417 ()
barcode.MicroPDF417 = BusinessRefinery.Barcode.Symbology.MicroPDF417
barcode.Code = "MicroPDF417"
barcode.Format = System.Drawing.Imaging.ImageFormat.Gif
barcode.drawBarcode2ImageFile("c:/micropdf417-vb-net.gif")
How to draw & print MicroPDF-417 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