Home >
.NET Imaging SDK >
C# >
Encode Barcode on Word
If this is your first time to use our DocImageSDK, we strongly suggest you reading How to Start first!
C# Word 1D & 2D Barcodes Generation
RasterEdge
.NET barcode generator control add-on offers C# developers with powerful barcode creating functions.
vb.net generate pdf from html,
itextsharp insert image into pdf vb.net,
c# print pdf silently,
c# convert pdf to docx,
asp.net mvc pdf editor,
qr code generator with logo c#.
Using this .NET barcode creator control in C# Word document imaging project, you can easily generate & add industry-standard linear and 2d barcode images on any Word document page with defined locations. Generated barcode images on MS Word page can be accurately and quickly read & decoded by compliant barcode scanners.
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 mvc pdf editor: ASP.NET MVC PDF Viewer & Editor: view, annotate, redact, edit PDF document in C# ASP.NET MVC
asp.net dicom document viewer: ASP.NET Dicom Document Viewer Control: view, annotate dicom imaging files online in ASP.NET
This C#.NET guide page for barcode creating & drawing on Word page is divided into following three parts.
- C#.NET Word barcode generator add-on features
- C# APIs and demo code to create & write 1d & 2d barcode images on target Word page
- C#.NET Word barcode creator control supported barcode types
c# annotate pdf,
c# convert pdf to text file,
vb.net search pdf for text,
c# make thumbnail of pdf,
vb.net pdf password,
tesseract c# pdf,
pdf template itextsharp c#.
C#.NET Word Barcode Creator Add-on Features
- Generate barcode image on Word without using other third-party tools or plug-ins
- Perfect combination of barcode writing functions and Word manipulating techniques
- Support both 1d and 2d barcodes generation on Word document using C#.NET class code
- Easy to adjust barcode image location on loaded MS Word document with Visual C# programming code
- Able to draw barcode image with customized size, rotation, resolution, etc. on Word page in C#.NET Windows and web applications
C#.NET APIs and Code to Add Barcode Image to MS Word
Following are the APIs that RasterEdge C#.NET Word barcode creator SDK offers to draw desired barcode type on defined location of source Word document page.
how to write pdf file in asp.net c#,
asp.net preview pdf,
pdf viewer in asp.net web application,
asp.net open word document on client,
mvc display pdf from byte array,
asp.net open excel file in browser,
show image in asp.net core.
To use these mature APIs, RasterEdge.Imaging.Basic.dll, RasterEdge.Imaging.Barcode.Creator.dll and RasterEdge.Imaging.MSWordDocx.dll should be added to your Visual C#.NET project first.
REImage BaseBarcode.ToImage();
void basePage.AddImage(REImage image, PointF point);
Here we give you a piece of C# sample code for generating Code 39 barcode on Word file page. And you can get more demo codes for other barcode types generations in next section.
public static void CreateBarcodeOnWord()
{
// generate a Code 39 barcode
Linear linearBarcode = new Linear();
linearBarcode.Type = RasterEdge.Imaging.Barcode.Creator.BarcodeType.CODE39;
// choose data to encode
linearBarcode.Data = "123456789";
linearBarcode.Resolution = 96;
linearBarcode.Rotate = Rotate.Rotate0;
// load Word document and you can also load documents like PDF, TIFF, Excel and PPT
DOCXDocument doc = new DOCXDocument(@"c:\sample.docx");
// get the first page
BasePage page = doc.GetPage(0);
// generate reimage of this barcode
REImage barcodeImage = linearBarcode.ToImage();
// add barcode image to the first page. The top left vertex of barcode image rectangle is at point(100,100)
page.AddImage(barcodeImage, new System.Drawing.PointF(100f, 100f));
// save changes to Word document
doc.Save(@"c:\sample.docx ");
}
C# Guides for All Barcodes Writing on Word
This C#.NET Word barcode generator SDK owns the ability to draw over 25 linear and 2d barcode images on source Word page. In this section, we list all these supported 1d and 2d barcode types that can be easily inserted into MS Word file (.docx). If you want to see detailed C# programming code for individual barcode type, please follow attached link.
C# Imaging - More Word Document Imaging Functions
Recommend this to Google+