RasterEdge
.NET Barcode Reader Add-on library is a professional barcode detecting & reading component designed for Microsoft .NET Framework applications.
add image watermark to pdf c#,
pdf pages c#,
how to convert pdf to jpg in c# windows application,
asp.net c# read pdf file,
c# best tiff compression,
convert tiff to pdf c# itextsharp.
This barcode scanning control can be easily integrated into Visual C# Word document processing application so that developers can read over 20 linear & 2d barcode images from MS Word document page.
Related .net document control helps:
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 pdf viewer: ASP.NET PDF Viewer Control: view, navigate, zoom Adobe PDF document in C# ASP.NET
asp.net mvc document viewer: ASP.NET MVC Document Viewer: view, annotate, redact files on ASP.NET MVC web projects
asp.net pdf page:
ASP.NET PDF Pages Edit Control: add, remove, sort, replace PDF pages online using C#
asp.net edit pdf text:
ASP.NET PDF Text Edit Control: online edit PDF text content using C# ASP.NET
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 multipage tiff viewer: ASP.NET Tiff Viewer: view, annotate multipage Tiff images in ASP.NET MVC, WebForms using C# Control
Here is the layout of this C#.NET Word barcode recognition guide page:
- C#.NET Word barcode reader control benefits
- C# API and sample code for reading barcode image from Word file
- Supported barcode types by C#.NET Word barcode reader add-on
vb.net convert pdf page to image,
read pdf file using itextsharp vb.net,
c# itextsharp read pdf image,
ghostscript pdf page count c#,
c# render pdf,
c# get pdf page size,
pdf report in c#.
In this section, we will illustrate C#.NET API and sample code used to detect & read barcode image from source Word file.
how to upload pdf file in database using asp.net c#,
asp.net remove image from pdf file,
asp.net tiff viewer control,
asp net remove text from pdf javascript,
pdf editor asp.net,
mvc display pdf in browser,
pdf preview in asp net c# example.
Please note, RasterEdge.Imaging.Basic.dll, RasterEdge.Imaging.Barcode.Scanner.dll and RasterEdge.Imaging.MSWordDocx.dll should be added to your Visual C#.NET project.
public static Barcode[] ReadBarcodes(ReaderSettings settings, BasePage page);
public static void ReadBarcodeFromWord(string filename, int pageIndex)
{
// generate Word document
DOCXDocument doc = new DOCXDocument (filename);
// get the page you want to read barcode from
BasePage page = doc.GetPage(pageIndex);
// set reader setting
ReaderSettings setting = new ReaderSettings();
// read Code 39 barcode type
setting.AddTypesToRead(BarcodeType.Code39);
// read out barcode information
Barcode[] barcodes = BarcodeReader.ReadBarcodes(setting, page);
// output barcode information
foreach (Barcode barcode in barcodes)
{
Console.WriteLine(barcode.DataString);
}
}
This .NET barcode decoder control add-on is able to read & scan over 20 commonly used barcode types from C#.NET Word page in a fast and accurate way. Here we list all supported linear and 2d barcode types in the following chart and you can view detailed C# demo code for reading specific barcode type by clicking attached link.