- Home
- Products
- Integration
- Tutorial
- Barcode FAQ
- Purchase
- Company
C#. EAN-13 Generator Image Setting Tutorialsample source code to generate linear EAN-13 in png, jpeg, etc. image formats in C# .NET
EAN-13, also known as European Article Number 13, UPC-13, GTIN-13, GS1-13, EAN/UCC-13, is the standard barcode version of European Article Number. C# EAN-13 is an EAN 13 generation package for .NET application which can easily create EAN 13 image without distortion. C# EAN-13 image setting properties (image formats, image resolution, image rotation, image color and bar alignment) are easy to implemented with EAN-13 generation component for C# .NET projects. For example, Bar Alignment property supports changing among Left, Right and Center.
OnBarcode C# Barcode Generator is designed to generate, create EAN 13 and other linear & 2d barcodes in Microsoft Word.
Here are some more tutorials for C# EAN 13 generation concerning data encoding and size setting.
5 image formats (BMP, PNG, JPEG, GIF, TIFF) are valid for setting C# .NET EAN-13 generated image format: Linear ean13 = new Linear(); Generating EAN-13 in PNG Format
Creating PNG format EAN-13 images in C#.NET Class & console application: ean13.Format = ImageFormat.Png; Creating EAN-13 in JPEG Format
Generating JEPG format EAN-13 images in C# ASP.NET web projects: ean13.Format = ImageFormat.Jpeg; Drawing EAN-13 in Gif Format
Printing GIF format EAN-13 images in C#.NET Windows Forms programming: ean13.Format = ImageFormat.Gif; Creating EAN-13 in Tiff Format
Generating TIFF format EAN-13 images in SQL Server Reporting Service (SSRS) & Crystal Reports: ean13.Format = ImageFormat.Tiff; Creating EAN-13 in BMP Format
Drawing BMP format EAN-13 images in C# .NET programming process: ean13.Format = ImageFormat.Bmp;
Rotating the generated EAN-13 image with 0, 90, 180, 270 degrees in C# projects: Linear ean13 = new Linear();
Setting the resolution for the created EAN-13 image in C# programming: Linear ean13 = new Linear();
C# .NET EAN-13 image color can be easily integrated with changing the text color, background color and bar color when generating EAN-13 in C# class: Linear ean13 = new Linear();
Bar Alignment property are available for C#.NET EAN-13 image setting: Linear ean13 = new Linear();When the set image width is larger than the minimum image width, Bar Alignment property can be set to put the extra space on the left, center and right side. |