Page 1 of 2 12 LastLast
Results 1 to 40 of 49

Thread: reading barcode from scanned images

  1. #1

    Thread Starter
    Fanatic Member coolcurrent4u's Avatar
    Join Date
    Apr 2008
    Location
    *****
    Posts
    993

    reading barcode from scanned images

    Hi all,

    Am trying to read barcode from products in a supermarket software, and parse it to get the barcode. I am using a scanner to scan the barcode image.

    any ideas

    thanks
    Programming is all about good logic. Spend more time here


    (Generate pronounceable password) (Generate random number c#) (Filter array with another array)

  2. #2
    PowerPoster Spoo's Avatar
    Join Date
    Nov 2008
    Location
    Right Coast
    Posts
    2,656

    Re: reading barcode from scanned images

    cool

    The title of your thread (emphasis on "images") leads me to
    think you that the source for your VB app is a .BMP file. Correct?

    Spoo

  3. #3

    Thread Starter
    Fanatic Member coolcurrent4u's Avatar
    Join Date
    Apr 2008
    Location
    *****
    Posts
    993

    Re: reading barcode from scanned images

    Quote Originally Posted by Spoo View Post
    cool

    The title of your thread (emphasis on "images") leads me to
    think you that the source for your VB app is a .BMP file. Correct?

    Spoo
    yes bmp or any other file type
    Programming is all about good logic. Spend more time here


    (Generate pronounceable password) (Generate random number c#) (Filter array with another array)

  4. #4
    PowerPoster
    Join Date
    Dec 2004
    Posts
    25,618

    Re: reading barcode from scanned images

    use a barcode scanner?
    i do my best to test code works before i post it, but sometimes am unable to do so for some reason, and usually say so if this is the case.
    Note code snippets posted are just that and do not include error handling that is required in real world applications, but avoid On Error Resume Next

    dim all variables as required as often i have done so elsewhere in my code but only posted the relevant part

    come back and mark your original post as resolved if your problem is fixed
    pete

  5. #5
    PowerPoster Spoo's Avatar
    Join Date
    Nov 2008
    Location
    Right Coast
    Posts
    2,656

    Re: reading barcode from scanned images

    cool

    I haven't tried this, but perhaps one way is to analyze
    the relative widths of the bars in your BMP to determine
    the corresponding numeric value.

    To do that, I'd probably put the BMP into a binary array.
    Then, analyze one "row" of pixels. If it is a black and white
    image, you'd only be getting (0, 0, 0) and (255, 255, 255)
    triplets in the array.

    Does that get you started?

    Spoo

  6. #6

    Thread Starter
    Fanatic Member coolcurrent4u's Avatar
    Join Date
    Apr 2008
    Location
    *****
    Posts
    993

    Re: reading barcode from scanned images

    @westconn1
    how do i read images or data from a barcode scanner?

    @Spoo
    each code has digitized meaning.How do i decode it?

    can u give me sample code to do what u said cos i dont understand
    Programming is all about good logic. Spend more time here


    (Generate pronounceable password) (Generate random number c#) (Filter array with another array)

  7. #7
    PowerPoster Spoo's Avatar
    Join Date
    Nov 2008
    Location
    Right Coast
    Posts
    2,656

    Re: reading barcode from scanned images

    Quote Originally Posted by coolcurrent4u View Post
    @Spoo
    each code has digitized meaning.How do i decode it?
    You got me there! I'm looking at a bar code on a
    pack of smokes. Different "bar width patterns" seem to
    correspond to the digits shown below. Unless you can
    find an explanation of barcodes somewhere, I guess
    you'll need to figure that out yourself. This Wiki page might be a
    place to start

    Quote Originally Posted by coolcurrent4u View Post
    can u give me sample code to do what u said cos i dont understand
    Well, it is a little involved..

    First, to get the file into a binary array, something like this

    Code:
    ff = "c:\myfile.bmp"     ' modify as needed to be your BMP file path
    Close #1
    Open ff For Binary as #1
    flen = FileLen(ff)
    Dim aaBitData() as Byte
    ReDim aaBitData(flen)
    Get #1, , aaBitData
    Close #1
    You will now have an array, aaBitData, that contains all of the BMP data

    Second, you'll need to be able to interpret the BMP file properties
    that are contained in the header section. It will give you, among
    other things,
    ... the offset as to where the "image" begins, and
    ... how many pixels are contained in each "row" of data.

    Holler if you are unable to figure this part out. I might be able to
    come up with a link for you.

    Spoo
    Last edited by Spoo; Feb 3rd, 2010 at 02:35 PM.

  8. #8
    PowerPoster
    Join Date
    Dec 2004
    Posts
    25,618

    Re: reading barcode from scanned images

    most barcode scanners come with builtin code recognition, they work as an input device, some used to split into the keyboard cable, so programs just saw the input as if it had come from the keyboard
    i do my best to test code works before i post it, but sometimes am unable to do so for some reason, and usually say so if this is the case.
    Note code snippets posted are just that and do not include error handling that is required in real world applications, but avoid On Error Resume Next

    dim all variables as required as often i have done so elsewhere in my code but only posted the relevant part

    come back and mark your original post as resolved if your problem is fixed
    pete

  9. #9
    PowerPoster CDRIVE's Avatar
    Join Date
    Jul 2007
    Posts
    2,620

    Re: reading barcode from scanned images

    I'm not understanding any of this thread. Adding to what westconn1 said, a PS2 type scanner will input the text or alphanumeric data directly into any text editor that has the focus. This includes a TextBox on your form!
    <--- Did someone help you? Please rate their post. The little green squares make us feel really smart!
    If topic has been resolved, please pull down the Thread Tools & mark it Resolved.


    Is VB consuming your life, and is that a bad thing??

  10. #10
    PowerPoster Spoo's Avatar
    Join Date
    Nov 2008
    Location
    Right Coast
    Posts
    2,656

    Re: reading barcode from scanned images

    Guys

    My assumption was that OP did not have such technology
    and was trying to code such by brute force, starting just
    with a BMP file.

    Spoo

  11. #11
    PowerPoster CDRIVE's Avatar
    Join Date
    Jul 2007
    Posts
    2,620

    Re: reading barcode from scanned images

    Quote Originally Posted by Spoo View Post
    Guys

    My assumption was that OP did not have such technology
    and was trying to code such by brute force, starting just
    with a BMP file.

    Spoo
    Then I'm even more confused because this is from CoolCurrent's first post.

    I am using a scanner to scan the barcode image.
    <--- Did someone help you? Please rate their post. The little green squares make us feel really smart!
    If topic has been resolved, please pull down the Thread Tools & mark it Resolved.


    Is VB consuming your life, and is that a bad thing??

  12. #12
    Addicted Member
    Join Date
    Jul 2007
    Posts
    228

    Re: reading barcode from scanned images

    Barcode reading and coding, akin to OCR reading, is not a trivial process. There are over 20 types of 1D barcodes. Many considerations must be taken into account... including the DPI of the scan. Anything less than 150 DPI will usually give errors. 300 or 200 DPI is probably best.

    There are many ActiveX and SDK's for barcode reading/writing. These usually are around $300-$500 with some available at over $1000. There is one free barcode reader SDK I'm aware of but it's accuracy is not great.

    Google Bar Code Reader ActiveX SDK for more info. The link below is to a site that has a good 1D bar code reader ActiveX for just under $500 and it's royalty free.

    http://www.gdpicture.com/products/pl...ecognition.php

    Good Luck!

    Tom

  13. #13
    PowerPoster Spoo's Avatar
    Join Date
    Nov 2008
    Location
    Right Coast
    Posts
    2,656

    Re: reading barcode from scanned images

    Quote Originally Posted by CDRIVE View Post
    Then I'm even more confused because this is from CoolCurrent's first post.

    Quote:
    I am using a scanner to scan the barcode image.
    Yes... I suppose it comes down to the meaning of "scanner"

    I simplisticly assumed CoolCurrent was referring to a desktop-like
    device such as a printer/scanner, as opposed to a retail store's
    checkout line hand-held scanner.

    Spoo

  14. #14

    Thread Starter
    Fanatic Member coolcurrent4u's Avatar
    Join Date
    Apr 2008
    Location
    *****
    Posts
    993

    Re: reading barcode from scanned images

    Spoo

    Exactly, this is what am talking about. Although we would be using a handheld scanner later.
    Programming is all about good logic. Spend more time here


    (Generate pronounceable password) (Generate random number c#) (Filter array with another array)

  15. #15

    Thread Starter
    Fanatic Member coolcurrent4u's Avatar
    Join Date
    Apr 2008
    Location
    *****
    Posts
    993

    Re: reading barcode from scanned images

    Quote Originally Posted by Tom Moran View Post
    Barcode reading and coding, akin to OCR reading, is not a trivial process. There are over 20 types of 1D barcodes. Many considerations must be taken into account... including the DPI of the scan. Anything less than 150 DPI will usually give errors. 300 or 200 DPI is probably best.

    There are many ActiveX and SDK's for barcode reading/writing. These usually are around $300-$500 with some available at over $1000. There is one free barcode reader SDK I'm aware of but it's accuracy is not great.

    Google Bar Code Reader ActiveX SDK for more info. The link below is to a site that has a good 1D bar code reader ActiveX for just under $500 and it's royalty free.

    http://www.gdpicture.com/products/pl...ecognition.php

    Good Luck!

    Tom
    thanks but this control is not free.And i would have loved it if it were purl vb
    Programming is all about good logic. Spend more time here


    (Generate pronounceable password) (Generate random number c#) (Filter array with another array)

  16. #16
    PowerPoster CDRIVE's Avatar
    Join Date
    Jul 2007
    Posts
    2,620

    Re: reading barcode from scanned images

    Quote Originally Posted by Spoo View Post
    Yes... I suppose it comes down to the meaning of "scanner"

    I simplisticly assumed CoolCurrent was referring to a desktop-like
    device such as a printer/scanner, as opposed to a retail store's
    checkout line hand-held scanner.

    Spoo
    Well Spoo, it would appear that you have assumed correctly!
    <--- Did someone help you? Please rate their post. The little green squares make us feel really smart!
    If topic has been resolved, please pull down the Thread Tools & mark it Resolved.


    Is VB consuming your life, and is that a bad thing??

  17. #17
    PowerPoster Spoo's Avatar
    Join Date
    Nov 2008
    Location
    Right Coast
    Posts
    2,656

    Re: reading barcode from scanned images

    CDRIVE

    Haha.. sometimes keeping it simple helps.

    Now for the hard part.. can CoolCurrent derive any benefit
    from using a binary array and reading the BMP file header
    plus a "sample row".

    Spoo

  18. #18
    PowerPoster
    Join Date
    Feb 2002
    Location
    Canada, Toronto
    Posts
    5,803

    Re: reading barcode from scanned images

    Can you post a sample image of the barcode you want to recognize ?

    If the barcode is Code128, I can probably make a function to recognize it, it does not sound that difficult to me... The only problem is that I am not sure if I will actually have time to do it...

    Since we are at this topic, I created this: VB6 - Code128 A,B and C

  19. #19

    Thread Starter
    Fanatic Member coolcurrent4u's Avatar
    Join Date
    Apr 2008
    Location
    *****
    Posts
    993

    Re: reading barcode from scanned images

    Thanks CVMicheal for sharing!

    i saw your code, but i don't want restricted barcode reader. i want to develop somthing that will be able to read standard international barcode.

    Any more ideas
    Programming is all about good logic. Spend more time here


    (Generate pronounceable password) (Generate random number c#) (Filter array with another array)

  20. #20
    PowerPoster
    Join Date
    Feb 2002
    Location
    Canada, Toronto
    Posts
    5,803

    Re: reading barcode from scanned images

    Hi coolcurrent4u,

    I should have said in my previous post, the code in that link is the opposite of what you need. That code generates the barcode in a picture...

    What you are asking does not really make sense... there is no such thing as "standard international barcode".

    Code128 is a very popular barcode, Code 39 is also popular, among other ones that I don't know the names, but you can find them is you search for Barcodes on the net.

    The way I see it, you have 2 choises:
    1) is to buy an already made tool to read the barcode from pictures, wich in the backgound it basically has algorithms to decode Code128 (+ the other barcodes).
    Here is a link that found for example: http://www.ocrtools.com/fi/Default.aspx
    There is a link "Try it out"
    2) Build your own tool, where you implement the OCR's for Code128, Code 39, etc....

  21. #21
    PowerPoster Spoo's Avatar
    Join Date
    Nov 2008
    Location
    Right Coast
    Posts
    2,656

    Re: reading barcode from scanned images

    CVM

    It appears that CoolCurrent is going for choice 2.

    That is what I was trying to help him with when I proposed use of
    the binary array and "reading the pixels" in a sample "row"

    Spoo

  22. #22

    Thread Starter
    Fanatic Member coolcurrent4u's Avatar
    Join Date
    Apr 2008
    Location
    *****
    Posts
    993

    Re: reading barcode from scanned images

    Spoo

    Can you do a sample project that will decode one of the printed barcode in CVMicheal image and give back the number that was use to encode it
    Last edited by coolcurrent4u; Feb 6th, 2010 at 01:20 PM.
    Programming is all about good logic. Spend more time here


    (Generate pronounceable password) (Generate random number c#) (Filter array with another array)

  23. #23
    PowerPoster Spoo's Avatar
    Join Date
    Nov 2008
    Location
    Right Coast
    Posts
    2,656

    Re: reading barcode from scanned images

    CoolCurrent

    No offense, but short answer is no !

    However, I'll be glad to walk you through what I was proposing,
    if you find that helpful.

    Spoo

  24. #24
    PowerPoster Spoo's Avatar
    Join Date
    Nov 2008
    Location
    Right Coast
    Posts
    2,656

    Re: reading barcode from scanned images

    CoolCurrent

    This link showing a BMP header format may help get you
    started.

    The key, it seems to me, is to find the image width in pixels.

    That would then enable you to "read" one line of the bar code.
    Some experimentation will be required, but if you play around
    with the raw BMP file in Notepad, you should see quite a bit of
    repetition (as each "row" of the barcode is repeated).

    Lets say that the "barcode image" happens at offset 51
    So, your binary array may look like:

    aaBA(51) = 255 ' white
    aaBA(52) = 0 ' black
    aaBA(53) = 0
    aaBA(54) = 255
    etc...

    I've simplified here... if I recall, there might actually be
    3 array elements per pixel (to capture the R, G, and B).

    The trick would be to find "narrow bars" and "wide bars", and
    then establish which letter/number these patterns correspond to.

    Not an easy job, but I think it would be doable.

    Spoo

  25. #25
    PowerPoster
    Join Date
    Feb 2002
    Location
    Canada, Toronto
    Posts
    5,803

    Re: reading barcode from scanned images

    coolcurrent4u,

    I could have made a sample for you if you would have given me what I asked you: A sample scanned picture !

    The picture that I have in my post in the other thread is too "perfect" because it was generated by the computer, I need a picture that is actually scanned by you, that is imperfect.

    Second, the approach to read the BMP directly is not good. Instead load the picture into a picturebox, and THEN read the image into a byte array. This way you are not limited to only BMP, you can also read jpg, and other formats that VB6 supports. But the byte array will always be in BMP byte array regardless of the input format.

    You can use the code here to get the byte array of the picture:
    http://www.vbforums.com/showpost.php...5&postcount=14

    Copy that code into a module
    Last edited by CVMichael; Feb 6th, 2010 at 08:36 PM.

  26. #26
    Addicted Member
    Join Date
    Jul 2007
    Posts
    228

    Re: reading barcode from scanned images

    Here is a link that found for example: http://www.ocrtools.com/fi/Default.aspx
    This is a .NET component. Didn't see any COM version on this site and in their FAQ's is this question/answer:

    Question: Do your components work with VB 6.0?
    We do not officially support our products in the VB 6.0 environment
    The GDPicture web site link in post #12 offers both .NET and ActiveX (COM)

  27. #27
    PowerPoster
    Join Date
    Dec 2004
    Posts
    25,618

    Re: reading barcode from scanned images

    here is a free one for code 39, with c source code available, maybe you can get some info from that
    http://alumnus.caltech.edu/~josephc/barcode.html

    also see this page for some more basic ideas by someone who has done
    http://www.velocityreviews.com/forum...rom-image.html
    Last edited by westconn1; Feb 8th, 2010 at 03:16 AM.
    i do my best to test code works before i post it, but sometimes am unable to do so for some reason, and usually say so if this is the case.
    Note code snippets posted are just that and do not include error handling that is required in real world applications, but avoid On Error Resume Next

    dim all variables as required as often i have done so elsewhere in my code but only posted the relevant part

    come back and mark your original post as resolved if your problem is fixed
    pete

  28. #28

    Thread Starter
    Fanatic Member coolcurrent4u's Avatar
    Join Date
    Apr 2008
    Location
    *****
    Posts
    993

    Re: reading barcode from scanned images

    Quote Originally Posted by CVMichael View Post
    coolcurrent4u,

    I could have made a sample for you if you would have given me what I asked you: A sample scanned picture !

    The picture that I have in my post in the other thread is too "perfect" because it was generated by the computer, I need a picture that is actually scanned by you, that is imperfect.

    Second, the approach to read the BMP directly is not good. Instead load the picture into a picturebox, and THEN read the image into a byte array. This way you are not limited to only BMP, you can also read jpg, and other formats that VB6 supports. But the byte array will always be in BMP byte array regardless of the input format.

    You can use the code here to get the byte array of the picture:
    http://www.vbforums.com/showpost.php...5&postcount=14

    Copy that code into a module
    Here is a sample from my advance vb6 book.
    Thanks for your help all the way!
    Attached Images Attached Images  
    Programming is all about good logic. Spend more time here


    (Generate pronounceable password) (Generate random number c#) (Filter array with another array)

  29. #29
    PowerPoster
    Join Date
    Feb 2002
    Location
    Canada, Toronto
    Posts
    5,803

    Re: reading barcode from scanned images

    That barcode is EAN-13, I tested it with this: http://www.bcgen.com/linear-barcode-creator.html

    If you type "97800723981590000" in the Data to encode (the number in your barcode), and from the Barcode symbology drop down, select "EAN-13", you will get the same barcode you posted in the image.

    Next step is to find information on how EAN-13 is generating the barcode, and then reverse engineer it...
    Last edited by CVMichael; Feb 8th, 2010 at 10:19 AM.

  30. #30

    Thread Starter
    Fanatic Member coolcurrent4u's Avatar
    Join Date
    Apr 2008
    Location
    *****
    Posts
    993

    Re: reading barcode from scanned images

    Quote Originally Posted by CVMichael View Post
    That barcode is EAN-13, I tested it with this: http://www.bcgen.com/linear-barcode-creator.html

    If you type "97800723981590000" in the Data to encode (the number in your barcode), and from the Barcode symbology drop down, select "EAN-13", you will get the same barcode you posted in the image.

    Next step is to find information on how EAN-13 is generating the barcode, and then reverse engineer it...

    Thanks, am makeing the app for customers, they may not know the type of Barcode their items contains.

    Just want a means that i can use to help dem recognize their own products.

    Scnanning and decoding it might help.

    that is why i started this this thread
    any more helo on the Next steps
    Programming is all about good logic. Spend more time here


    (Generate pronounceable password) (Generate random number c#) (Filter array with another array)

  31. #31

    Thread Starter
    Fanatic Member coolcurrent4u's Avatar
    Join Date
    Apr 2008
    Location
    *****
    Posts
    993

    Re: reading barcode from scanned images

    Quote Originally Posted by CVMichael View Post
    That barcode is EAN-13, I tested it with this: http://www.bcgen.com/linear-barcode-creator.html

    If you type "97800723981590000" in the Data to encode (the number in your barcode), and from the Barcode symbology drop down, select "EAN-13", you will get the same barcode you posted in the image.

    Next step is to find information on how EAN-13 is generating the barcode, and then reverse engineer it...

    Thanks, am making the app for customers, they may not know the type of Barcode their items contains.

    Just want a means that i can use to help them recognize their own products.

    Scanning and decoding it might help.

    that is why i started this this thread
    any more help on the Next steps
    Last edited by coolcurrent4u; Feb 14th, 2010 at 10:01 AM.
    Programming is all about good logic. Spend more time here


    (Generate pronounceable password) (Generate random number c#) (Filter array with another array)

  32. #32
    PowerPoster
    Join Date
    Feb 2002
    Location
    Canada, Toronto
    Posts
    5,803

    Re: reading barcode from scanned images

    Did you do some research to find out how EAN-13 generates the barcode ?

    I can start to make a sample for you to decode the Code 128 (since I am familiar with it), can try to find a barcode that is encoded with Code 128 and post the scanned image of it ?

  33. #33

    Thread Starter
    Fanatic Member coolcurrent4u's Avatar
    Join Date
    Apr 2008
    Location
    *****
    Posts
    993

    Re: reading barcode from scanned images

    Quote Originally Posted by CVMichael View Post
    Did you do some research to find out how EAN-13 generates the barcode ?

    I can start to make a sample for you to decode the Code 128 (since I am familiar with it), can try to find a barcode that is encoded with Code 128 and post the scanned image of it ?
    Here are som from my HP printers
    Attached Images Attached Images    
    Programming is all about good logic. Spend more time here


    (Generate pronounceable password) (Generate random number c#) (Filter array with another array)

  34. #34
    New Member
    Join Date
    Jan 2010
    Posts
    6

    Re: reading barcode from scanned images

    Most barcoding for business is done by simply purchasing a hand held scanner. The scanner does all the work and sends the "text" back to your program. I do this all the time. I have worked with barcode scanners and VB6 for years. The reason for buying a scanner to do this work is pretty straight forward. To may times you can put all the time into the work to do one barcode and then some jerk on the other end decides to change the barcode they'be been using for years. With scanners most can read all kinds of barcodes, you just have to program them to enable some of non-default if it doesn't read it by default.

    Scanners come in all kinds of types, flavors, and most of all costs.
    What I would recommend is that you take example barcodes you want to scan and contact datalogic or symbol companies (Motorolla bought out symbol about year ago). Send them the images and they will decode and tell you exactly what type of symbol it is, and all it's characteristics.

    You see, most hand held scanners can read many types of barcodes and a good portion of the barcodes have different characteristics that need to be setup. I would think a grocery store would most like be a simple UPC type barcode.
    Most hand held, or for that much, even the type like you see in walmart that the product runs in front of, can be programmed to read any of many types of barcodes. Most by default to be able to read the standard code39, code 128 types of barcodes. Some times with some scanners you may have to enable UPC or related type barcodes along with setting their characteristics up. Most of this will come in the manual of the barcode, and if you do run into setup problems, symbol and datalogic both are outstanding in talking you through the steps.

    Now for the types of scanners. I have and still do a lot of serial port scanners, but that is getting to be old school. I would look at a wedge(keyboard PS2 type) or straight USB scanner. The older wedge type I have had some issues in the past and I would recommend USB over the wedge at this point. The usb type acts just like a wedge in that once installed, which is usually plug and play or just a CD install, and you scan something it will decode and send the text result to the screen.

    Now for the VB side. Since the text is getting sent to the screen (your program) you just always do things to keep focus on the text box you want the value to be entered in to.
    Then it is best of you setup your scanner to have a suffix of char 13 or char 10 depending on what your scanner can setup the easiest. Then you have your text box's key press event monitor for the char 13 or 10 - this is like hitting the enter key.

    That is pretty much it.

  35. #35
    Addicted Member
    Join Date
    Jul 2007
    Posts
    228

    Re: reading barcode from scanned images

    Also, CoolCurrent, there are free on-line barcode readers. You just upload an image containing the barcode and it returns the text in a window. Here's a fairly reliable site:

    http://zxing.org/w/decode.jspx

  36. #36

    Thread Starter
    Fanatic Member coolcurrent4u's Avatar
    Join Date
    Apr 2008
    Location
    *****
    Posts
    993

    Re: reading barcode from scanned images

    Thanks Tom Moran

    That code is java, and for mobile phones, i don't currently know how to translate java to Vb6.

    Any help here?
    Programming is all about good logic. Spend more time here


    (Generate pronounceable password) (Generate random number c#) (Filter array with another array)

  37. #37
    Addicted Member
    Join Date
    Jul 2007
    Posts
    228

    Re: reading barcode from scanned images

    Sorry, Cool. Can't help with Java Translation.

    Have you looked at the Freeware barcode reader utility from Bytescout?

    http://bytescout.com/barcodereader.html


    Tom

  38. #38

    Thread Starter
    Fanatic Member coolcurrent4u's Avatar
    Join Date
    Apr 2008
    Location
    *****
    Posts
    993

    Re: reading barcode from scanned images

    Hello Tom Moran,

    I downloaded the program above, but it dose not seem to work!!!

    After downloading, i selected one of the picture (one in jpg format and the other in png format) i posted ealier, but the programs throws an exception.

    The idea is that i have to read the picture into byes array according to #7

    but what happens after then, i.e how to read each bar and decode its value is just what is the problem.

    any more help here

    thanks in advance
    Programming is all about good logic. Spend more time here


    (Generate pronounceable password) (Generate random number c#) (Filter array with another array)

  39. #39
    PowerPoster Spoo's Avatar
    Join Date
    Nov 2008
    Location
    Right Coast
    Posts
    2,656

    Re: reading barcode from scanned images

    Cool

    If by "according to #7" you mean "post #7", then I guess
    you mean me.

    I could possibly walk you thru the reading of a BMP file format
    (which has no compression), but not a JPG or PNG (both of which
    involve compression).

    Spoo

    I don

  40. #40

    Thread Starter
    Fanatic Member coolcurrent4u's Avatar
    Join Date
    Apr 2008
    Location
    *****
    Posts
    993

    Re: reading barcode from scanned images

    Quote Originally Posted by Spoo View Post
    Cool

    If by "according to #7" you mean "post #7", then I guess
    you mean me.

    I could possibly walk you thru the reading of a BMP file format
    (which has no compression), but not a JPG or PNG (both of which
    involve compression).

    Spoo

    I don
    ok please help me with your bitmap technique. this means that i have to decode any non bitmap format and then decode the barcode data
    Programming is all about good logic. Spend more time here


    (Generate pronounceable password) (Generate random number c#) (Filter array with another array)

Page 1 of 2 12 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width