|
|
|
|
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Hi all,
Can anyone recommend a solution for creating barcodes on a webserver. We're
looking for a solution that will work on a Windows webserver, but we could
always call a webservice on a Linux box.
Ideally the solution should be able to create the barcode as an image in
different resolutions and formats i.e. bitmap, jpeg and vector/SVG
Perhaps POV-Ray could be used???!!!
Thanks in advance
Reuben
reu### [at] pslconnectcom
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Reuben Pearse wrote:
> Can anyone recommend a solution for creating barcodes on a webserver.
> We're looking for a solution that will work on a Windows webserver, but
> we could always call a webservice on a Linux box.
>
> Ideally the solution should be able to create the barcode as an image in
> different resolutions and formats i.e. bitmap, jpeg and vector/SVG
>
> Perhaps POV-Ray could be used???!!!
>
> Thanks in advance
http://www.barcodesinc.com/free-barcode-font/
--
Tim Cook
http://empyrean.freesitespace.net
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
> Ideally the solution should be able to create the barcode as an image in
> different resolutions and formats i.e. bitmap, jpeg and vector/SVG
You do *not* want to use JPEG for a barcode.
> Perhaps POV-Ray could be used???!!!
What needs to be able to read the barcode?
If it only needs to be readable by some software that you're going to
write yourself, then what you have is a simple pattern matching problem.
If, on the other hand, it's supposed to be readable by an existing
system, you need to look up what standard(s) it conforms to, and take it
from there...
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Reuben Pearse wrote:
> Can anyone recommend a solution for creating barcodes on a webserver.
What kind of barcodes? 1D? 2D? What standards?
The easiest is probably to google for "generate barcodes" and pick one. It
was a well-solved problem when I last looked at it several years ago.
--
Darren New, San Diego CA, USA (PST)
"We'd like you to back-port all the changes in 2.0
back to version 1.0."
"We've done that already. We call it 2.0."
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Reuben Pearse <reu### [at] pearsecouk> wrote:
> Ideally the solution should be able to create the barcode as an image in
> different resolutions and formats i.e. bitmap, jpeg and vector/SVG
A barcode in jpeg format? Jpeg would be approximately the worst possible
format you could *ever* choose for a 2-color image which has thin vertical
bars of random width.
(Besides, there would be no size advantage whatsoever. On the contrary.
A jpeg of sufficient quality will most probably be at least a hundred times
larger than an optimized png. At least.)
--
- Warp
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Warp wrote:
> (Besides, there would be no size advantage whatsoever.
Actually, it doesn't work at all if you make the image the same size as the
barcode. I.e., if the barcode is a 140 pixels wide, and you make a jpeg
image 140 pixels wide (say, for display on a device with 140 pixels across),
you won't have a usable barcode. You'd have to make the jpeg several
multiples larger.
--
Darren New, San Diego CA, USA (PST)
"We'd like you to back-port all the changes in 2.0
back to version 1.0."
"We've done that already. We call it 2.0."
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |