Home >
.NET Imaging SDK >
VB.NET >
Scan PLANET on Doc Image
To get started with DocImage SDK for .NET, you are supposed to read VB.NET Imaging: Get Started first!
PLANET Barcode Reader in VB.NET Overview
VB.NET Barcode Reading Control supports decoding and reading PLANET and other 1D & 2D barcodes from images and documents, including TIFF, PDF, Word documents, etc. Other barcode types supported by this Control include Code 39, Code 128,
QR Code, Data Matrix and so on. We provide royalty-free license for this .NET, VB.NET Barcode Reading SDK that enables you to integrate high performance PLANET barcode recognition functionalities into your VB.NET applications.
itext7 merge pdf vb.net,
c# excel to pdf free library,
itextsharp how to create pdf with a table design and embed image in c#,
remove password from pdf using c#,
c# add png to pdf,
ghostscript convert pdf to png c#,
c# pdf add background.
Related .net document control helps:
asp.net pdf page:
ASP.NET PDF Pages Edit Control: add, remove, sort, replace PDF pages online using C#
asp.net annotate pdf:
ASP.NET Annotate PDF Control: annotate, comment, markup PDF document online using ASP.NET C#
asp.net excel viewer: ASP.NET Excel Viewer in C# Control (MVC & WebForms): view Office Excel document in web browser.
asp.net text file viewer: ASP.NET Text file viewer in MVC, WebForms: Open, view, annotate, convert txt files in C# ASP.NET
asp.net mvc pdf editor: ASP.NET MVC PDF Viewer & Editor: view, annotate, redact, edit PDF document in C# ASP.NET MVC
asp.net mvc document viewer: ASP.NET MVC Document Viewer: view, annotate, redact files on ASP.NET MVC web projects
asp.net pdf editor: EdgePDF: ASP.NET PDF Editor Web Control: Online view, annotate, redact, edit, process, convert PDF documents
With this professional PLANET barcode reading control that is specially designed for VB.NET developers, you can easily detect and read PLANET and other commonly linear and 2d barcodes from any position of your image or document at any orientation.
pdf editor in asp.net mvc,
asp. net mvc pdf viewer,
image viewer asp net c#,
asp.net remove image from pdf file,
pdf reader in asp.net c#,
preview pdf in asp.net mvc,
asp.net tiff viewer.
If you have a demand of reading PLANET barcode in C#.NET applications, you can use our
C#.NET PLANET Barcode Reading SDK and follow its detailed developer guide.
PLANET Barcode Reader in VB.NET Features
Here is a list of main features of this VB.NET PLANET Barcode Recognition Library.
- Easily and quickly integrate into VB.NET application for PLANET barcode reading from images and documents
- Completely compatible with our VB.NET Imaging, PDF and Word Controls to realize more functions
- Recognize PLANET and more linear & two-dimensional barcodes in VB.ENT at a very fast speed
- Support superior performance for PLANET barcode reading in VB.NET without any quality loss
- Able to detect PLANET linear barcode from image and document at any angle through VB.NET programming
- A standalone VB.NET PLANET barcode reading and recognizing control used by many developers
PLANET Barcode Reading from Image in VB.NET
Developers are capable of reading and scanning PLANET barcode from images in VB.NET with this VB.NET Barcode Reading SDK. BMP, GIF, TIFF, PNG and JPEG are image formats supported by this SDK. You can build a VB.NET project in your Visual Studio and use the following sample code to recognize PLANET barcode from any of the above image formats.
Public Shared FolderName As String = "c:/"
Private Sub button1_Click(sender As Object, e As EventArgs)
Dim fileName As String = FolderName & "SampleBarcode.tif"
Dim datas As String() = BarcodeScanner.Scan(fileName, BarcodeType.PLANET)
For Each data As String In datas
Debug.WriteLine(data)
Next
End Sub
PLANET Barcode Reading from PDF in VB.NET
In this section, we will describe PLANET barcode reading from single-page or multi-page PDF document through VB.NET programming. As our PLNAET Barcode Reading SDK supports direct barcode reading from images, not directly from other documents, developers need to convert PDF document into REImage formats in the first place. Here is the VB demo code:
Public Shared FolderName As String = "c:/"
Private Sub button1_Click(sender As Object, e As EventArgs)
Dim fileName As String = FolderName & "Sample.pdf"
Dim reImage As REImage = DirectCast(REFile.OpenDocumentFile(fileName, New
PDFDecoder()).GetPage(0).ToImage(), REImage)
Dim datas As String() = BarcodeScanner.Scan(reImage, BarcodeType.PLANET)
For Each data As String In datas
Debug.WriteLine(data)
Next
End Sub
PLANET Barcode Reading from Word in VB.NET
If you want to recognize and read PLANET barcode from Word document with our VB.NET Barcode Reading Control, you need to convert the Word document into supported image formats beforehand because this Control does not allow for direct barcode reading from Word document. You can use the following VB.NET sample code.
Public Shared FolderName As String = "c:/"
Private Sub button1_Click(sender As Object, e As EventArgs)
Dim fileName As String = FolderName & "Sample.docx"
Dim reImage As REImage = DirectCast(REFile.OpenDocumentFile(fileName, New
DOCXDecoder()).GetPage(0).ToImage(), REImage)
Dim datas As String() = BarcodeScanner.Scan(reImage, BarcodeType.PLANET)
For Each data As String In datas
Debug.WriteLine(data)
Next
End Sub
PLANET 1D Barcode Introduction in VB.NET
PLANET is abbreviated from Postal Alpha Numeric Encoding Technique and PLANET Barcode in VB.NET project is often placed on the front of letter and flat pieces of mail by United States Postal Service to identify and track these pieces of mail during delivery. PLANET barcode, also known as UUPS Confirm Service Barcode, is a linear barcode with mandatory 12 or 14 digits. It is composed of a series of tall and short bars. Each PLANET barcode digit uses a combination of two tall and three short bars and it must start from and end with a long framing bar. PLANET is similar in structure to the
POSTNET barcode. As with POSTNET, the check digit of PLANET barcode is calculated by calculating the sum of other characters and use the sum to divide by ten.
PLANET barcode in VB.NET project is often used to identify class and shape of each piece of mail and the Confirm Subscriber ID. It includes six digits that contains additional information for Confirm Subscriber to choose from, including mailling number, mainling campaign ID, customer ID and others.
Recommend this to Google+