Guide for VB.NET
Core Document Formats
Additional Features
RM4SCC

VB.NET Imaging - How to Read RM4SCC Barcode

VB.NET Sample Codes for Scanning, Decoding RM4SCC in .NET Application

VB.NET
Home > .NET Imaging SDK > VB.NET > Scan RM4SCC on Doc Image
To get started with DocImage SDK for .NET, you are supposed to read VB.NET Imaging: Get Started first!

RM4SCC VB.NET Decoding Overview
RM4SCC barcode reader library for VB.NET is one of the image processing controls from the RasterEdge Image SDK for .NET. This barcode plug-in component is developed to help users easily scan and decode RM4SCC linear barcode symbol from image file (jpeg, png, gif, tiff and bmp are supported), as well as other file type such as PDF document, Microsoft Office Word (.docx file). vb.net wpf pdf viewer, merge pdf c# itextsharp, how to convert pdf to text file in vb.net, itextsharp image to pdf vb.net, merge 2 pdf in vb.net, vb.net search pdf for text, vb.net convert tiff to pdf.
Related .net document control helps:
asp.net mvc document viewer: ASP.NET MVC Document Viewer: view, annotate, redact files on ASP.NET MVC web projects
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 edit pdf image: ASP.NET PDF Image Edit Control: online insert, edit PDF images in 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...
asp.net mvc text file viewer: ASP.NET Text file viewer in MVC, WebForms: Open, view, annotate, convert txt files in C# ASP.NET
asp.net edit pdf text: ASP.NET PDF Text Edit Control: online edit PDF text content using 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
RM4SCC stands for a linear postal barcode used by the Royal Mail for the Cleanmail service, and it is also known as Customer Bar Code (CBC). Using this RM4SCC barcode reader library, Visual Basic developers can easily and correctly scan & decode all the numeric and alphabetic text data encoded in RM4SCC with a fast speed in your VB.NET image processing application. asp.net open word document, asp net core mvc pdf viewer download, pdf viewer in asp.net using c#, asp.net mvc open excel file, pdf preview in asp.net c#, asp.net itextsharp add image to pdf, how to edit pdf file using itextsharp in asp.net.
This page will help users learn how to decode an RM4SCC 1D barcode from images, PDFs and Word docs. Guiding steps and VB.NET sample codes will be provided for the following aspects:
  • How to read RM4SCC barcodes from images using VB.NET sample codings
  • How to scan RM4SCC barcodes from PDF file using VB.NET programming language
  • How to decode RM4SCC barcodes from MS Word document with VB.NET demo codes
Of course RM4SCC barcode is not the only barcode type supported by this Visual Basic barcode reader component, because you can also read and decode other linear and 2D barcode symbols. Here we have provided you with VB.NET guide for decoding USPS Intelligent Mail (OneCode), Visual Basic sample codes for reading Identcode in .NET, and also how to scan Interleaved 2 of 5 1D barcode symbology in Visual Basic .NET.
VB.NET RM4SCC Barcode Reader Features
  • Compatible with Microsoft Visual Studio 2005 and above
  • Easy to be integrated into .NET applications such as VB.NET Class Library and Windows Form
  • Complete VB.NET demo codes are provided to scan RM4SCC barcode from images
  • Support reading RM4SCC from png, jpeg, gif, tiff and bmp image formats in VB.NET
  • Detailed guide and sample codes available for decoding RM4SCC from local PDF document
  • Simple to decipher an RM4SCC barcode or multiple ones from a Microsoft Office Word file using VB.NET
  • Efficiently decode all the RM4SCC from the entire document / image or from a user-defined area
Decode RM4SCC from Images in VB.NET
RasterEdge barcode reader library for RM4SCC allows VB.NET developers to read, scan RM4SCC linear barcode symbols from images, supporting png, jpeg, gif, tiff and bmp image formats currently. Users will be able to decode RM4SCC barcode by scanning the whole image picture, or you can simply define an area within the image for barcode scanning. This function can be used when there is only a single RM4SCC barcode placed on a certain part of the image, so you can improve the reading speed by avoiding scanning the whole image, which is not quite necessary.
Demonstrated below are the Visual Basic sample codes for reading RM4SCC from a TIFF image stored in your local disk C. Please copy the demo image and VB.NET codings to your project for a test. Make sure you have built an imaging application using VB.NET beforehand.
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.RM4SCC)

For Each data As String In datas
Debug.WriteLine(data)
Next
End Sub
Read RM4SCC from PDF in VB.NET
Besides reading barcode symbols from an image, this VB.NET barcode reading library also allows you to decode RM4SCC linear bar code from a PDF document. Using this barcode reading method, you will be able to decode all the RM4SCC barcode images founded in the PDF document and output result to your program for future use.
The Visual Basic sample codings below shows you how to decode RM4SCC barcodes from your local file "Sample.pdf", which you can copy from the evaluation package. The PDF document pages are converted into RasterEdge image format at the beginning, and then RM4SCC barcode information is decoded and output to your VB application.
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.RM4SCC)

For Each data As String In datas
Debug.WriteLine(data)
Next
End Sub
Scan RM4SCC from MS Word in VB.NET
If you have a Microsoft Office Word document and you want to decode RM4SCC barcodes from it, you can have a try with this VB.NET RM4SCC barcode reader library. This library can be integrated into many Visual Studio .NET applications, from which you can easily compile VB.NET codings to read RM4SCC from an MS Word doc.
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.RM4SCC)

For Each data As String In datas
Debug.WriteLine(data)
Next
End Sub


Recommend this to Google+


RasterEdge.com is professional provider of ASP.NET MVC Document Viewer, ASP.NET PDF Viewer, MVC PDF Viewer document, content and imaging solutions, available for ASP.NET AJAX, Silverlight, Windows Forms as well as WPF. We are dedicated to provide powerful & profession imaging controls, PDF document, image to pdf files and components for capturing, viewing, processing, converting, compressing and stroing images, documents and more.

©2000-2024 Raster Edge.com