Bar Code

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Ali Rizwan
    Banned
    Contributor
    • Aug 2007
    • 931

    Bar Code

    Hi all,
    I want to make a programe which reads a bar code and also create bar codes(Optional) .
    Input is taken from bar code scanner and may be the simple scanner.
    In case of simple scanner programe has to crop the bar code area automatically or take that area without cropping that.

    Thanx

    >>> ALI <<<
  • werks
    New Member
    • Dec 2007
    • 218

    #2
    Originally posted by Ali Rizwan
    Hi all,
    I want to make a programe which reads a bar code and also create bar codes(Optional) .
    Input is taken from bar code scanner and may be the simple scanner.
    In case of simple scanner programe has to crop the bar code area automatically or take that area without cropping that.

    Thanx

    >>> ALI <<<
    I alos want to know how barcode works.. Hope somebody will post


    Better Than Yesterday (-.-)

    Comment

    • Killer42
      Recognized Expert Expert
      • Oct 2006
      • 8429

      #3
      I thought the driver software for a barcode reader normally just passes in a number, as though the user typed the number.

      As for creating them, that has been covered here before - try the search box. But I think you have to buy a barcode font.

      Comment

      • debasisdas
        Recognized Expert Expert
        • Dec 2006
        • 8119

        #4
        To create barcode, you must have barcode fonts.

        Try to use C39 or C 128 to generate the code.

        Since these accept only string parameters you have to convert numbers to string before passing.
        Last edited by Killer42; Jan 10 '08, 12:38 AM.

        Comment

        • lotus18
          Contributor
          • Nov 2007
          • 865

          #5
          You can also create barcode fonts in CorelDraw. : )

          Rey Sean

          Comment

          • Killer42
            Recognized Expert Expert
            • Oct 2006
            • 8429

            #6
            Originally posted by debasisdas
            To create barcode, you must have barcode fonts.
            Try to use C39 or C 128 to generate the code.
            Since these accept only string parameters you have to convert numbers to string before passing.
            Can you explain what you mean about passing parameters to a font? I wasn't aware you could execute them at all.
            Last edited by Killer42; Feb 21 '08, 01:33 AM.

            Comment

            • idautomation
              Banned
              New Member
              • Feb 2008
              • 1

              #7
              Originally posted by Killer42
              Can you explain what you mean about passing parameters to a font? I wasn't aware you could execute them at all.
              You can not simply apply the font to the data that you would like to barcode. The data must be formatted specifically (called 'encoding') to meet the requirements set forth by the standards organizations that produce the specifications for each barcode type (called a 'symbology'). This formatting includes the addition of start and stop characters to the data, the calculation and appendage of a check digit to the data, and proper formatting of the data itself. The start and stop characters are necessary so that barcode scanner does not try to scan from an arbitrary point in the barcode. The check digit allows the scanner to ensure that it has read the data correctly. And, the data needs to be formatted to ensure unique bar space patterns for each character and, in some cases, compress the data.
              Last edited by Killer42; Feb 21 '08, 01:33 AM. Reason: Corrected "tham" in quote block

              Comment

              Working...