VB Imaging - Micro PDF 417 VB Barcode Generation
How to Draw Micro PDF-417 on Image & Document Using VB Code
VB Imaging - Micro PDF 417 Barcoding Add-On Overview
Fully developed in .NET Framework 2.0, this VB.NET Micro PDF 417 barcode generator add-on owns the capacity to insert industry standard Micro PDF 417 barcode into png, jpeg, gif, bmp, tiff, Word and PDF document image files in a programming way. Following are the main features of this VB.NET Micro PDF 417 barcode creator SDK.
c# asp.net open word document,
free pdf preview in asp net c#,
asp.net multipage tiff viewer with thumbnails,
asp.net display pdf,
pdf viewer in mvc c#,
asp.net edit pdf,
asp.net open excel file in browser.
The Barcode Creator Add-on of RasterEdge DocImage SDK for .NET is a reliable and robust barcode generating component written in managed VB code. Apart from the commonly used PDF-417 barcode, it also supports generating Micro PDF-417 barcode symbol, which is compatible with established ISO/IEC barcode specification and standard, in Visual VB.NET imaging applications. With this library, users will be able to create standalone barcode images on png, jpeg, gif, bmp, or simply insert barcodes on several documents, including TIFF, PDF, Word, Excel and PPTX.
c# read pdf text,
c# edit pdf metadata,
c# itextsharp add text to existing pdf,
convert pdf to svg c#,
c# send pdf stream to printer,
c# convert text file to pdf,
vb.net pdf add pages.
Related .net document control helps:
asp.net edit pdf text:
ASP.NET PDF Text Edit Control: online edit PDF text content using C# ASP.NET
asp.net image viewer: ASP.NET Image Viewer Control(MVC & WebForms): view, annotate, redact, convert image files in html, JQuery
asp.net powerpoint viewer: ASP.NET PowerPoint Document Viewer Control (MVC & WebForms): view ppt, pptx files online in C# using ASP.NET
asp.net pdf viewer: ASP.NET PDF Viewer Control: view, navigate, zoom Adobe PDF document in C# ASP.NET
asp.net document viewer c#: ASP.NET Document Viewer using C#: Open, View, Annotate, Redact, Convert document files in ASP.NET using C#, HTML5, JQuer...
asp.net annotate pdf:
ASP.NET Annotate PDF Control: annotate, comment, markup PDF document online using ASP.NET C#
asp.net pdf document viewer: ASP.NET PDF Document Viewer in C#: open, display, view, annotate, redact Adobe PDF files online in ASP.NET MVC & WebForm...
Offer APIs for VB.NET developers to insert Micro PDF 417 barcode into desired location of source image or document exactly
Allow VB.NET developers to draw Micro PDF 417 barcode with transparent background on PDF & Word document
The rotation, resolution, symbol size, data mode and ECLs of Micro PDF 417 barcode are all user-defined using VB.NET
VB Code for Customizing Micro PDF 417 Barcode Generation
You can easily generator Micro PDF 417 barcode and save it to image files/object using this VB.NET barcode generator control. The following steps will show how to create a Micro PDF417 type barcode encoding numeric data text "123456789" into the image object with XImage.Barcode.Creator.
Add References
RasterEdge.Imaging.Basic.dll
RasterEdge.Imaging.Drawing.dll
RasterEdge.Imaging.Font.dll
RasterEdge.Imaging.Processing.dll
RasterEdge.XImage.BarcodeCreator.dll
System.Drawing.dll
Using Namespaces
using System.Drawing;
using RasterEdge.XImage.BarcodeCreator;
Note: When you get the error "Could not load file or assembly 'RasterEdge.Imaging.Basic' or any other assembly or one of its dependencies. An attempt to load a program with an incorrect format", please check your configure as follows:
If you are using x64 libraries/dlls, Right click the project -> Properties -> Build -> Platform target: x64.
If using x86, the platform target should be x86.
Please copy the sample code as follow to generator a Micro PDF417 barcode.
Dim barcode As MicroPDF417 = New MicroPDF417()
'create a Data Matrix barcode
'encode data into Data Matrix barcode
barcode.Data = "123456789"
'set module size
barcode.X = 5.0F
'the minimum value for each margin should be equal to X
barcode.RightMargin = barcode.LeftMargin = barcode.TopMargin = barcode.BottomMargin = barcode.X
'set barcode printing resolution
barcode.Resolution = 96
'set rotation
barcode.Rotate = Rotate.Rotate0
barcode.BarcodeHeight = 200
barcode.BarcodeWidth = 200
barcode.AutoResize = true
'convert barcode to a bitmap and save it to image file
'Dim bmp As Bitmap = barcode.ToImage()
'bmp.Save("C:\\barcode.bmp")
|

|
|
VB Imaging - Create Micro PDF 417 Barcode on Images
This Barcode Creator Add-on for .NET can be directly used in VB.NET image processing applications. It supports drawing Micro PDF 417 barcode on png, gif, jpeg & bmp image files. Demonstrated below is the VB sample coding with which you will create a Micro PDF 417 barcode encoding "123456789" on a png image "Sample.png" located in your hard drive C.
Demo setting only includes module width, image resolution, rotation / orientation, and the specific location for barcode printing on sample image. For more settings such as column count, row count, unit of measure (pixel, cm and inch), and barcode image color, please refer to the property table below to create custom Micro PDF 417.
Dim image As REImage = New REImage("C:\\Sample.png")
barcode.DrawBarcode(image, 150F, 150F)
image.Save(ImageType.PNG, "C:\\Sample_Barcode.png")
|
VB Imaging - Insert Micro PDF 417 Barcode on Documents
Using this Barcode Creator Add-on for VB.NET, you are free to write and draw Micro PDF 417 barcode on PDF, TIFF, Microsoft Word, Excel and PowerPoint documents page in VB.NET class application. At the same time, you have full control for the exact location of barcode on image by simple settings of X and Y coordinates that are measured in pixel.
VB Code for Generating Micro PDF 417 Barcode on PDF
Add References(Extra)
RasterEdge.Imaging.Basic.Codec.dll
RasterEdge.XImage.Raster.dll
RasterEdge.XImage.Raster.Core.dll
RasterEdge.XDoc.PDF.dll
Using Namespace(Extra)
RasterEdge.XDoc.PDF;
RasterEdge.Imaging.Basic;
RasterEdge.Imaging.Raster.Core;
Dim docx As PDFDocument = New PDFDocument("C:\\Sample.pdf")
Dim page As PDFPage = docx.GetPage(0)
Dim image As Bitmap = barcode.ToImage() 'Define on the above code
page.AddImage(image, New PointF(100F, 100F))
docx.Save("C:\\Sample_Barcode.pdf")
|
VB Code for Creating Micro PDF 417 Barcode on TIFF
Add References(Extra)
RasterEdge.Imaging.Basic.Codec.dll
RasterEdge.XImage.Raster.dll
RasterEdge.XImage.Raster.Core.dll
RasterEdge.XDoc.TIFF.dll
Using Namespace(Extra)
RasterEdge.XDoc.TIFF;
RasterEdge.Imaging.Basic;
RasterEdge.Imaging.Raster.Core;
Dim docx As TIFFDocument = New TIFFDocument("C:\\Sample.tif")
Dim page As BasePage = docx.GetPage(0)
Dim image As REImage = New REImage(barcode.ToImage())
page.AddImage(image, New PointF(100F, 100F))
docx.Save("C:\\Sample_Barcode.tif")
|
VB Code for Printing Micro PDF 417 Barcode on Word
Add References(Extra)
RasterEdge.XDoc.Word.dll
RasterEdge.XImage.Raster.dll
RasterEdge.XImage.Raster.Core.dll
RasterEdge.XDoc.Office.Inner.Common.dll
RasterEdge.XDoc.Office.Inner..Office03.dll
Using Namespace(Extra)
RasterEdge.XDoc.Word;
RasterEdge.Imaging.Basic;
RasterEdge.Imaging.Raster.Core;
Dim docx As DOCXDocument = New DOCXDocument("C:\\Sample.docx")
Dim page As BasePage = docx.GetPage(0)
Dim image As REImage = New REImage(barcode.ToImage())
page.AddImage(image, New PointF(100F, 100F))
docx.Save("C:\\Sample_Barcode.docx")
|
VB Code on Adding 2D Micro PDF 417 to Excel
Add References(Extra)
RasterEdge.XDoc.Excel.dll
RasterEdge.XImage.Raster.dll
RasterEdge.XImage.Raster.Core.dll
RasterEdge.XDoc.Office.Inner.Common.dll
RasterEdge.XDoc.Office.Inner..Office03.dll
Using Namespace(Extra)
RasterEdge.XDoc.Excel;
RasterEdge.Imaging.Basic;
RasterEdge.Imaging.Raster.Core;
Dim docx As XLSXDocument = New XLSXDocument("C:\\Sample.xlsx")
Dim page As BasePage = docx.GetPage(0)
Dim image As REImage = New REImage(barcode.ToImage())
page.AddImage(image, New PointF(100F, 100F))
docx.Save("C:\\Sample_Barcode.xlsx")
|
VB Code to Create Micro PDF 417 on PPTX File
Add References(Extra)
RasterEdge.XDoc.PowerPoint.dll
RasterEdge.XImage.Raster.dll
RasterEdge.XImage.Raster.Core.dll
RasterEdge.XDoc.Office.Inner.Common.dll
RasterEdge.XDoc.Office.Inner..Office03.dll
Using Namespace(Extra)
RasterEdge.XDoc.PowerPoint;
RasterEdge.Imaging.Basic;
RasterEdge.Imaging.Raster.Core;
Dim docx As PPTXDocument = New PPTXDocument("C:\\Sample.pptx")
Dim page As BasePage = docx.GetPage(0)
Dim image As REImage = New REImage(barcode.ToImage())
page.AddImage(image, New PointF(100F, 100F))
docx.Save("C:\\Sample_Barcode.pptx")
|