|
|
|
การเปลี่ยน แท่ง บาโค้ด แล้ว ให้ แสดง เป็น เลข บาโค้ด |
|
|
|
|
|
|
|
อันนี้ผมว่าไม่น่าจะทำได้ง่ายๆ นะครับ เพราะหลักการที่คุณต้องการนั้นคือ Scanner บาร์โค้ด ดีๆ นั่นเองครับ
(ที่เราเห็นใน Big C, Lotus, Seven ตอนจ่ายเงิน อะไรทำนองนั้น) ผมว่ามันน่าจะควรเป็น Hardware หรือเปล่า
แต่ถ้าต้องการเป็น Software จริงๆ ยังไงก็ต้องใช้หลักการ Image processing ครับ
|
|
|
|
|
Date :
2012-04-12 23:44:23 |
By :
smeproject |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ช่วยได้แค่นี้จริงๆครับ
Code (C#)
Linear barcode = new Linear();
// Codabar Barcode Basic Settings
barcode.Type = BarcodeType.CODABAR;
/*
Codabar Valid data char set:
- (Dash), $ (Dollar), : (Colon), / (Slash), . (Point), + (Plus)
0, 1, 2, 3, 4, 5, 6, 7, 8, 9
*/
barcode.Data = "112233445566";
// Codabar Start & Stop Char
barcode.CodabarStartChar = CodabarStartStopChar.A;
barcode.CodabarStopChar = CodabarStartStopChar.A;
// Barcode Size Related Settings
barcode.UOM = UnitOfMeasure.PIXEL;
barcode.X = 1;
barcode.Y = 80;
barcode.LeftMargin = 0;
barcode.RightMargin = 0;
barcode.TopMargin = 0;
barcode.BottomMargin = 0;
barcode.Resolution = 96;
barcode.Rotate = Rotate.Rotate0;
// Barcode Text Settings
barcode.ShowText = true;
barcode.TextFont = new Font("Arial", 9f, FontStyle.Regular);
barcode.TextMargin = 6;
// Image format setting
barcode.Format = ImageFormat.Gif;
barcode.drawBarcode(@"c:\codabar.gif");
Dll File
http://www.mediafire.com/?v07mhmovjq8uuko
|
|
|
|
|
Date :
2012-04-13 01:22:41 |
By :
manman12307 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|