473,378 Members | 1,527 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,378 software developers and data experts.

Printing barcodes in a production environment?

Just wondering if anyone has any ideas on how to solve a particular
problem. A client wants to print barcode labels from their (web/php
based application). The barcode labels are very small, so I'm guessing
that doing a screendump via a standard inkjet isn't going to work
(i.e. might need somehow to print to a barcode printer!)

Any ideas where to start?

Thanks in advance.
Jul 17 '05 #1
11 4307

"Murray Elliot" <to***********@blueyonder.co.uk> wrote in message
news:c0********************************@4ax.com...
Just wondering if anyone has any ideas on how to solve a particular
problem. A client wants to print barcode labels from their (web/php
based application). The barcode labels are very small, so I'm guessing
that doing a screendump via a standard inkjet isn't going to work
(i.e. might need somehow to print to a barcode printer!)

Any ideas where to start?

Thanks in advance.


Barcode technology & printers have been around for a long time (at least in
high tech spans). Visit the websites of one or two of the biggies in the
business. You should find white papers and other explanations that will tip
you in the right direction.

George
Jul 17 '05 #2
Murray Elliot wrote:
Just wondering if anyone has any ideas on how to solve a particular
problem. A client wants to print barcode labels from their (web/php
based application). The barcode labels are very small, so I'm guessing
that doing a screendump via a standard inkjet isn't going to work
(i.e. might need somehow to print to a barcode printer!)

There are different "plugins", most seems to be commercial ones.
If you are interested in postscript based barcodes, then you can take a look
at www.terryburton.co.uk/barcodewriter/index.html
//Aho
Jul 17 '05 #3
Google for "barcode truetype font". Then check out
http://www.microsoft.com/typography/...t3/default.htm on
how to embed fonts into HTML pages.

Jul 17 '05 #4
Murray Elliot wrote:
Just wondering if anyone has any ideas on how to solve a particular
problem. A client wants to print barcode labels from their (web/php
based application). The barcode labels are very small, so I'm guessing
that doing a screendump via a standard inkjet isn't going to work
(i.e. might need somehow to print to a barcode printer!)

Any ideas where to start?


Why do the same work twice?

http://pear.php.net/package/Image_Barcode
Jul 17 '05 #5
Thanks for the feedback guys, I'm pretty clear on barcode generation
per-se, so perhaps my quetsion wasn't as clear as it should have been,

I'm more concerned about the practical ability to align a web page
printout with printer label stock... i.e. I can generate a page with
rows of barcodes on them, but how do you ensure that the bracodes and
the labels line up when output?

Thanks again.
Jul 17 '05 #6
> Just wondering if anyone has any ideas on how to solve a particular
problem. A client wants to print barcode labels from their (web/php
based application). The barcode labels are very small, so I'm guessing
that doing a screendump via a standard inkjet isn't going to work
(i.e. might need somehow to print to a barcode printer!)

Any ideas where to start?

Thanks in advance.


http://pear.php.net/package-info.php...=Image_Barcode
Jul 17 '05 #7
Murray Elliot wrote:
Thanks for the feedback guys, I'm pretty clear on barcode generation
per-se, so perhaps my quetsion wasn't as clear as it should have been,

I'm more concerned about the practical ability to align a web page
printout with printer label stock... i.e. I can generate a page with
rows of barcodes on them, but how do you ensure that the bracodes and
the labels line up when output?


It sounds difficult to do because of the way people might have set up
their browsers (margins, headers, etc). I think what you probably need
to do is either build a postscript or pdf file via the webpage, and send
that to printer, or alternatively, talk to the printer directly via
serial/parallel port (albeit, that's a lot of work).

/Marcin
Jul 17 '05 #8
Em Sun, 13 Feb 2005 15:39:05 +0000, Murray Elliot escreveu:
Just wondering if anyone has any ideas on how to solve a particular
problem. A client wants to print barcode labels from their (web/php
based application). The barcode labels are very small, so I'm guessing
that doing a screendump via a standard inkjet isn't going to work
(i.e. might need somehow to print to a barcode printer!)

Any ideas where to start?

Thanks in advance.


The best way to have exact positioning is to create a PDF.
Have a look at www.fpdf.org
There are several scripts with barcodes.
Jul 17 '05 #9
Just dump it to the PNG image. White and black won't take much size.
"Murray Elliot" <to***********@blueyonder.co.uk> wrote in message
news:gv********************************@4ax.com...
Thanks for the feedback guys, I'm pretty clear on barcode generation
per-se, so perhaps my quetsion wasn't as clear as it should have been,

I'm more concerned about the practical ability to align a web page
printout with printer label stock... i.e. I can generate a page with
rows of barcodes on them, but how do you ensure that the bracodes and
the labels line up when output?

Thanks again.

Jul 17 '05 #10
Murray Elliot wrote:
Just wondering if anyone has any ideas on how to solve a particular
problem. A client wants to print barcode labels from their (web/php
based application). The barcode labels are very small, so I'm guessing
that doing a screendump via a standard inkjet isn't going to work
(i.e. might need somehow to print to a barcode printer!)

Any ideas where to start?

Thanks in advance.


barcodes are actually fonts. This means that a barcode label is actually
very close to any other output. For low-end work you can print to laser
printers. Of course if the workstation does not have the font...

I google'd "barcode fonts windows" and out they came.

When you start to go high-end there are thermal barcode printers that have
built-in abilities.

--
Kenneth Downs
Secure Data Software, Inc.
(Ken)nneth@(Sec)ure(Dat)a(.com)
Jul 17 '05 #11
I do it by printing it to a gif and then working out spacing it for whatever
the printer it will normally print off of has set for top and left margins.

I used to do this with checks and the funky micr font on the bottom that has
to be exactly x/32 of an inch from the bottom of each check. Then, someone
several states away, clicks the link and prints the check page - 3 on a page
in one big gif. Is only two colors so still downloads quickly.

PHP graphics routines will let you do true-type fonts in *nix. Isn't PHP
great?

John

"Kenneth Downs" <kn**************@see.sigblock> wrote in message
news:1b************@pluto.downsfam.net...
Murray Elliot wrote:
Just wondering if anyone has any ideas on how to solve a particular
problem. A client wants to print barcode labels from their (web/php
based application). The barcode labels are very small, so I'm guessing
that doing a screendump via a standard inkjet isn't going to work
(i.e. might need somehow to print to a barcode printer!)

Any ideas where to start?

Thanks in advance.


barcodes are actually fonts. This means that a barcode label is actually
very close to any other output. For low-end work you can print to laser
printers. Of course if the workstation does not have the font...

I google'd "barcode fonts windows" and out they came.

When you start to go high-end there are thermal barcode printers that have
built-in abilities.

--
Kenneth Downs
Secure Data Software, Inc.
(Ken)nneth@(Sec)ure(Dat)a(.com)

Jul 17 '05 #12

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: David Chapman | last post by:
I need to print barcodes with normal characters on labels from my which has a VB.net front end. The database is a library system, the barcode represents the bookid - the isbn is not used. The book...
6
by: Murray Elliot | last post by:
Just wondering if anyone has any ideas on how to solve a particular problem. A client wants to print barcode labels from their (web/php based application). The barcode labels are very small, so I'm...
3
by: Mika M | last post by:
Hi all! I have made an application for printing simple barcode labels using PrintDocument object, and it's working fine. Barcode printer that I use is attached to the computer, and this...
3
by: Michael | last post by:
Hi, I'm trying to print barcodes to the Dymo LabelWriter printer. Put everytime I send a job to the label printer it just outputs an empty label. If I change the default printer back to the...
1
by: kmercer46 | last post by:
My application basically prints barcodes for customers lets say in thousands. And there are operators who prints this barcodes all over the country using this application which is being run over...
7
by: Burhan | last post by:
Hello Group: I am in the planning stages of an application that will be accessed over the web, and one of the ideas is to print a barcode that is generated when the user creates a record. The...
1
by: benfly08 | last post by:
Hi, I got a printing problem for my C# program. I need to pull out records from database and format them and then print them out. I used PrintDocument class and PrintPageEventHandler function...
1
by: steve | last post by:
Hi All Has anybody had experience with printing text and barcodes to Zebra label printers in VB.net 2005 Regards Steve
2
by: zafar | last post by:
Hi there, I need to print barcodes using IDs which are used in my system. I need some help how to print barcodes (any type EAN-13, EAN-8, Code 39 etc etc). If there is any free DLL available for...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.