Ganesh Kale

Ganesh Kale

  • NA
  • 2
  • 18.9k

About generating classes of Datamatrix & pdf417 barcodes in C#.net

Oct 11 2012 5:47 AM
Hi,
i am trying to develope an application that generate 2d barcode like Datamatrix & pdf417 but the classes which i am created are not working very well so please give me an idea about creating classes of these barcodes. 

Answers (3)

0
Talal Azme

Talal Azme

  • 0
  • 2
  • 0
Oct 28 2013 4:03 AM
Implementing your own classes is not optimal. There are many articles that use already implemented classes like the ones in here and stackoverflow. You can find barcode engines like: http://sourceforge.net/projects/zint/ Developing our application was a kind of drag because we first tested many sdks and engines. Finally, we landed on an sdk called leadtools that enabled us to read and generate barcodes easily If you want to take a look, they have some demos installed with their sdk.
0
JAY KARL

JAY KARL

  • 0
  • 22
  • 0
Jan 6 2013 4:11 AM
Both ASP.NET and .NET WinForms support C# and VB.NET to generate barcodes.
For example, to create Data Matrix in asp.net:
Copy those following sample code to your ASP.NET project:
using BusinessRefinery.Barcode;

DataMatrix barcode = new DataMatrix();
barcode.Code = "Data Matrix";
barcode.Resolution = 104;
barcode.Rotate = Rotate.Rotate180;
barcode.Format = ImageFormat.Gif;
barcode.drawBarcode2ImageFile("c:/data-matrix-csharp.gif");

You can customize its properties with your needs.

Hope it helps!

0
Sukesh Marla

Sukesh Marla

  • 224
  • 8.1k
  • 1.6m
Oct 14 2012 10:20 AM
Try this Open source fro Datamatrix
http://datamatrixnet.sourceforge.net/

and this fro pdf417
http://sourceforge.net/projects/pdf417lib/