Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > Generating and Reading Barcodes

Reply
Thread Tools

Generating and Reading Barcodes

 
 
Tod Birdsall, MCSD for .NET
Guest
Posts: n/a
 
      02-05-2007
Hi All,

I am looking for recommendations on ways/components to implement the
following features in my application:

1. Dynamically generate a barcode image to insert into a PDF document
using iText.

2. Read the previously generated barcode from a tiff image.

Has anyone had experience with the above and could offer
recommendations?

Thanks.

Tod Birdsall
software blog: http://tod1d.net

 
Reply With Quote
 
 
 
 
Tod Birdsall, MCSD for .NET
Guest
Posts: n/a
 
      02-05-2007
One thing I forgot to mention is that I am looking at GMSE Imaging as
a possible solution. Has anyone had any experience with it?

http://imaging.gmse.net/

Tod Birdsall
software blog: http://tod1d.net

 
Reply With Quote
 
 
 
 
Thomas Hansen
Guest
Posts: n/a
 
      02-05-2007
On Feb 5, 8:59 pm, "Tod Birdsall, MCSD for .NET" <tbirds...@gmail.com>
wrote:
> One thing I forgot to mention is that I am looking at GMSE Imaging as
> a possible solution. Has anyone had any experience with it?
>
> http://imaging.gmse.net/
>
> Tod Birdsall
> software blog:http://tod1d.net


You could use http://ajaxwidgets.com which has a "DynamicImage"
control...

..t

--
http://ajaxwidgets.com
Free ASP.NET Ajax Widgets NOW!

 
Reply With Quote
 
George Ter-Saakov
Guest
Posts: n/a
 
      02-05-2007
There are many different barcode schemas.
The most easiest one is Code39

Almost all of them are pretty much a special font. Meaning that A is 2 fat
lines and 3 narrow lines, B is 1 fat line, 2 narrow and then 1 fat.......
(it's just a sample).

So to insert barcode into anything you simply need to output text with
special font. You can download code39 font for free from internet. The
differences between schemas is in how they have error corrections.
For example code39 is prefixed and suffixed with symbol '*'

So Order number 345 in code#9 notation will be *39*. Then Barcode reader
will automatically recognize it and enter into computer as if you punched
keys 3 and 9 on a keyboard and hit enter (that behavior is configurable in a
reader)


To Read barcode you need a scanner similar to those you can see in a store.


George.


"Tod Birdsall, MCSD for .NET" <> wrote in message
news: oups.com...
> Hi All,
>
> I am looking for recommendations on ways/components to implement the
> following features in my application:
>
> 1. Dynamically generate a barcode image to insert into a PDF document
> using iText.
>
> 2. Read the previously generated barcode from a tiff image.
>
> Has anyone had experience with the above and could offer
> recommendations?
>
> Thanks.
>
> Tod Birdsall
> software blog: http://tod1d.net
>



 
Reply With Quote
 
Tod Birdsall, MCSD for .NET
Guest
Posts: n/a
 
      02-05-2007
On Feb 5, 2:42 pm, "George Ter-Saakov" <gt-...@cardone.com> wrote:
> There are many different barcode schemas.
> The most easiest one is Code39
>
> Almost all of them are pretty much a special font. Meaning that A is 2 fat
> lines and 3 narrow lines, B is 1 fat line, 2 narrow and then 1 fat.......
> (it's just a sample).
>
> So to insert barcode into anything you simply need to output text with
> special font. You can download code39 font for free from internet. The
> differences between schemas is in how they have error corrections.
> For example code39 is prefixed and suffixed with symbol '*'
>
> So Order number 345 in code#9 notation will be *39*. Then Barcode reader
> will automatically recognize it and enter into computer as if you punched
> keys 3 and 9 on a keyboard and hit enter (that behavior is configurable in a
> reader)
>
> To Read barcode you need a scanner similar to those you can see in a store.
>
> George.
>
> "Tod Birdsall, MCSD for .NET" <tbirds...@gmail.com> wrote in messagenews: ooglegroups.com...
>
>
>
> > Hi All,

>
> > I am looking for recommendations on ways/components to implement the
> > following features in my application:

>
> > 1. Dynamically generate a barcode image to insert into a PDF document
> > using iText.

>
> > 2. Read the previously generated barcode from a tiff image.

>
> > Has anyone had experience with the above and could offer
> > recommendations?

>
> > Thanks.

>
> > Tod Birdsall
> > software blog:http://tod1d.net- Hide quoted text -

>
> - Show quoted text -


Hi,

I should have been more specific. The user will print a document
containing the dynamically generated barcode. After filling out the
document by hand, the user will fax the document back to me. I will
receive it as a tiff file. I would like my app to read the barcode off
the tiff file and handle the document accordingly.

Thanks.

Tod Birdsall
software blog: http://tod1d.net

 
Reply With Quote
 
George Ter-Saakov
Guest
Posts: n/a
 
      02-05-2007
I see now.
Unfortunately you will need some sort of image recognition library.

I am positive that such algorithms/programs exists because they work in real
life with the barcode readers.
Most likely you will easily develop one but my advice would be to buy

http://www.freedownloadscenter.com/P...eader_SDK.html
or type into Google

"barcode reader algorithm from tiff file"




George.


"Tod Birdsall, MCSD for .NET" <> wrote in message
news: ups.com...
> On Feb 5, 2:42 pm, "George Ter-Saakov" <gt-...@cardone.com> wrote:
>> There are many different barcode schemas.
>> The most easiest one is Code39
>>
>> Almost all of them are pretty much a special font. Meaning that A is 2
>> fat
>> lines and 3 narrow lines, B is 1 fat line, 2 narrow and then 1 fat.......
>> (it's just a sample).
>>
>> So to insert barcode into anything you simply need to output text with
>> special font. You can download code39 font for free from internet. The
>> differences between schemas is in how they have error corrections.
>> For example code39 is prefixed and suffixed with symbol '*'
>>
>> So Order number 345 in code#9 notation will be *39*. Then Barcode reader
>> will automatically recognize it and enter into computer as if you punched
>> keys 3 and 9 on a keyboard and hit enter (that behavior is configurable
>> in a
>> reader)
>>
>> To Read barcode you need a scanner similar to those you can see in a
>> store.
>>
>> George.
>>
>> "Tod Birdsall, MCSD for .NET" <tbirds...@gmail.com> wrote in
>> messagenews: ooglegroups.com...
>>
>>
>>
>> > Hi All,

>>
>> > I am looking for recommendations on ways/components to implement the
>> > following features in my application:

>>
>> > 1. Dynamically generate a barcode image to insert into a PDF document
>> > using iText.

>>
>> > 2. Read the previously generated barcode from a tiff image.

>>
>> > Has anyone had experience with the above and could offer
>> > recommendations?

>>
>> > Thanks.

>>
>> > Tod Birdsall
>> > software blog:http://tod1d.net- Hide quoted text -

>>
>> - Show quoted text -

>
> Hi,
>
> I should have been more specific. The user will print a document
> containing the dynamically generated barcode. After filling out the
> document by hand, the user will fax the document back to me. I will
> receive it as a tiff file. I would like my app to read the barcode off
> the tiff file and handle the document accordingly.
>
> Thanks.
>
> Tod Birdsall
> software blog: http://tod1d.net
>



 
Reply With Quote
 
Tod Birdsall, MCSD for .NET
Guest
Posts: n/a
 
      02-08-2007
On Feb 5, 3:24 pm, "George Ter-Saakov" <gt-...@cardone.com> wrote:
> I see now.
> Unfortunately you will need some sort of image recognition library.
>
> I am positive that such algorithms/programs exists because they work in real
> life with the barcode readers.
> Most likely you will easily develop one but my advice would be to buy
>
> http://www.freedownloadscenter.com/P...ts_and_Librari...
> or type into Google
>
> "barcode reader algorithm from tiff file"
>
> George.
>
> "Tod Birdsall, MCSD for .NET" <tbirds...@gmail.com> wrote in messagenews: oglegroups.com...
>
> > On Feb 5, 2:42 pm, "George Ter-Saakov" <gt-...@cardone.com> wrote:
> >> There are many different barcode schemas.
> >> The most easiest one is Code39

>
> >> Almost all of them are pretty much a special font. Meaning that A is 2
> >> fat
> >> lines and 3 narrow lines, B is 1 fat line, 2 narrow and then 1 fat.......
> >> (it's just a sample).

>
> >> So to insert barcode into anything you simply need to output text with
> >> special font. You can download code39 font for free from internet. The
> >> differences between schemas is in how they have error corrections.
> >> For example code39 is prefixed and suffixed with symbol '*'

>
> >> So Order number 345 in code#9 notation will be *39*. Then Barcode reader
> >> will automatically recognize it and enter into computer as if you punched
> >> keys 3 and 9 on a keyboard and hit enter (that behavior is configurable
> >> in a
> >> reader)

>
> >> To Read barcode you need a scanner similar to those you can see in a
> >> store.

>
> >> George.

>
> >> "Tod Birdsall, MCSD for .NET" <tbirds...@gmail.com> wrote in
> >> messagenews: ooglegroups.com...

>
> >> > Hi All,

>
> >> > I am looking for recommendations on ways/components to implement the
> >> > following features in my application:

>
> >> > 1. Dynamically generate a barcode image to insert into a PDF document
> >> > using iText.

>
> >> > 2. Read the previously generated barcode from a tiff image.

>
> >> > Has anyone had experience with the above and could offer
> >> > recommendations?

>
> >> > Thanks.

>
> >> > Tod Birdsall
> >> > software blog:http://tod1d.net-Hide quoted text -

>
> >> - Show quoted text -

>
> > Hi,

>
> > I should have been more specific. The user will print a document
> > containing the dynamically generated barcode. After filling out the
> > document by hand, the user will fax the document back to me. I will
> > receive it as a tiff file. I would like my app to read the barcode off
> > the tiff file and handle the document accordingly.

>
> > Thanks.

>
> > Tod Birdsall
> > software blog:http://tod1d.net


Hi George,

Thanks for the response. I will continue to research a possible
solution.

Tod Birdsall
software blog: http://tod1d.net

 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Generate Barcodes with Custom width & ECC Standards for 2D Barcodes sherazam Java 1 1 Week Ago 02:41 AM
Reportlab and Barcodes Josh Python 8 12-24-2008 09:04 AM
Ruby and barcodes Paulo Carvalho Ruby 4 10-22-2007 04:05 PM
Barcodes MDB ASP .Net 1 01-27-2006 01:55 AM
Generating barcodes (as gif/jpg) Matt Pelletier Ruby 0 08-26-2005 10:43 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57