C# Micro PDF417 Generator Library DLL
How to generate, create 2d barcode Micro PDF417 images using C# class library
Using Micro PDF417 C#.NET Barcode Library to create Micro PDF417 barcode images in .NET Applications
In this tutorial, you will learn how to generate Micro PDF417 barcode images using C# in .NET applications
How to create Micro PDF-417 barcodes in ASP.NET, Windows using C#
- Completely integrate mature barcoding functions into Visual Studio .NET Framework
- Directly uses .NET Barcode Generator DLLs for C# Micro PDF417 generation
- Easy to generate, create Micro PDF417 barcode images in C# for ASP.NET web applications
- Generate high-quality Micro PDF-417 2d barcodes in C# for .NET Windows Forms projects
- Create and make barcode in C# for SQL Server Reporting Services (SSRS)
- Support Micro PDF-417 C# barcode creation on Crystal Reports & RDLC Local Files
- Support commonly-used 2d barcodes generation in C#, including C# PDF-417,
C# QR Code,
C# Micro QR Code,
C# Data Matrix
C# Micro PDF417 Generator Library (DLLs) Introduction
Top
Micro PDF417, a multi-row 2d barcode, is adopted in applications that need to encode a moderate amount of data in a two-dimensional symbol (up to 150 bytes, 250 alphanumeric characters, or 366 numeric digits), and when minimizing symbol size is a primary concern. It is identical to PDF417 in terms of its encoding modes, error correction method, and symbol character sets.
Micro PDF-417 C# Barcode Generator Library is one of OnBarcode's
.NET Barcode Generator SDK. It is commonly used to generate and draw almost 30 1D & 2D barcode images for Visual C#.NET projects.
Related Micro PDF417 Generator Library DLLs
OnBarcode.com offers some other Micro PDF-417 Barcode Components:
.NET Micro PDF417,
ASP.NET Micro PDF417,
VB.NET Micro PDF417.
This page provides detailed C# source code to generate Micro PDF417 barcode images using C# class .NET programs.
Barcode Libraries that you may also be interested in
OnBarcode designs some barcode generation libraries for Visual Basic.NET and ASP.NET Web.
Generate Micro PDF-417 Barcode Images Using C# Class
Top
Please use the following C# sample code to create a Micro PDF417 barcode image for Visual Studio .NET Framework applications:
using System;
using System.Collections.Generic;
using System.Text;
using OnBarcode.Barcode;
using System.Drawing.Imaging;
using System.Drawing;
MicroPDF417 Micro_PDF417 = new MicroPDF417();
/*
Micro PDF417 valid data character set:
1) Text Compaction mode (see 5.4.2) permits all printable ASCII characters to be encoded, i.e.
values 32 to 126 inclusive in accordance with ISO/IEC 646, as well as selected control characters.
2) Byte Compaction mode (see 5.4.3) permits all 256 possible 8-bit byte values to be encoded. This
includes all ASCII characters value 0 to 127 inclusive and provides for
international character set support.
3) Numeric Compaction mode (see 5.4.4) permits efficient encoding of numeric data strings.
*/
Micro_PDF417.Data = "OnBarcodeMicroPDF417";
Micro_PDF417.DataMode = PDF417DataMode.Auto;
// Micro PDF417 Image Size Related Settings
Micro_PDF417.UOM = UnitOfMeasure.PIXEL;
Micro_PDF417.X = 2;
Micro_PDF417.XtoYRatio = 0.3333333f;
Micro_PDF417.BarcodeHeight = 72;
Micro_PDF417.BarcodeWidth = 210;
Micro_PDF417.Version = MicroPDF417Version.Version_4X10;
Micro_PDF417.LeftMargin = 2;
Micro_PDF417.RightMargin = 2;
Micro_PDF417.TopMargin = 2;
Micro_PDF417.BottomMargin = 2;
// Other Related Settings
Micro_PDF417.Rotate = Rotate.Rotate0;
Micro_PDF417.Resolution = 72;
// Create Micro PDF417 and encode barcode to png format
Micro_PDF417.ImageFormat = System.Drawing.Imaging.ImageFormat.Png;
Micro_PDF417.drawBarcode("C://micro_pdf417.png");
// Print Micro PDF417 to C# Bitmap object
Bitmap Micro_PDF417Bitmap = Micro_PDF417.drawBarcode();
More C# Barcode Generation Tutorials for Each Barcode
Top
Barcode Control for C#.NET - Bar Code Type Generation