how to generate barcode code 128 and then read it???
i have a .dll file downloaded from various sites and use it for scanning a barcode in an image but im unable to open it.
hence could not see the code.
im using microsoft visual studio 2010
please reply asap/
Loading
Laxmidhar SahooPosted Nov 19, 2018, 3:23 AM
Leon DPosted Nov 19, 2018, 3:06 AM
Jagdeep SinghPosted Nov 19, 2018, 2:40 AM
Posted Aug 20, 2013, 2:27 AM
besides,as for barcode reader you may refer to reader in .net.
fsdrfew fsrePosted Aug 13, 2013, 3:26 AM
REImage reImage = REFile.OpenImageFile("c:/Sample.png", new PNGDecoder());
Linear barcode = new Linear();//create a barcode
barcode.Type = RasterEdge.Imaging.Barcode.Creator.BarcodeType.CODE128;//select barcode type
barcode.Data = "123456789";//set barcode data
barcode.X = 1.0F;//set x
barcode.Y = 60.0F;//set y
barcode.Resolution = 96;//set resolution
barcode.Rotate = Rotate.Rotate0;//set rotate
barcode.DrawBarcode(reImage, 300, 450);//draw barcode on REImage with location x and y
REFile.SaveImageFile(reImage, "c:/code128.png", new PNGEncoder());
JAY KARLPosted Jan 6, 2013, 3:08 AM
For instance, generate code128 in asp.net:
Then, you just copy the C# to your peoject to decode it!
Hope it helps!
ada jonesPosted Sep 14, 2012, 12:10 AM
Brain HameLPosted Aug 6, 2012, 3:52 AM
We searched a lot and ended up using leadtools barcode module, which helped us to write and read different barcode types (including code 128).
For more information, see the following page:
http://www.leadtools.com/help/leadtools/v175/dh/ba/leadtools.barcode~leadtools.barcode.barcodereader.htmlrobert dunleaveyPosted May 1, 2012, 3:48 PM
Are you trying to print the barcode on a specific printer?
Barcode Labels printers have barcodes on-board you just need to send the correct parameters down i.e. x y cordinates, barcode type, density etc.
Regards
Rob
Barcolde Label Answers
Krishna GaradPosted May 1, 2012, 4:56 AM
Barcode Generator
Barcode Scanner
may helps you.