Slashdot Mirror


Replacing Jetform - Open Source Barcode Printing Alternatives?

diabolus_in_america asks: "I work for a mid-size manufacturer. Currently we use Jetform running on HP/UX to print the majority of our barcode labels to Zebra thermal printers. However, Jetform is a dead technology, and we are would like to look at open source alternatives. Is there an open source alternative to Jetform? What we need is a system that lets us mark up and design a barcode label which can then be populated from data files at print time. In its day, the Jetform system was an excellent and quick solution to barcode printing. But those days are over, at least for us, and we'd like to move to an open source alternative, if one exists."

7 of 36 comments (clear)

  1. Why is it dead ? by Anonymous Coward · · Score: 3, Insightful

    It's nice to think about a Free Software solution, because if you can get to source code without paying licensing fees it increases your businesses reliability and flexibility.

    However, are you sure you have to switch now ? What exactly is it that you can't do that you want to do ? Just because you haven't seen a gushy cutting edge article about jetforms in the trade press lately, is no reason to drop it. Does every portion of your business have to be a current fad ?

  2. bar codes by jalet · · Score: 3, Informative

    try ReportLab from http://www.reportlab.com

    It's a Python library to generate PDF files.

    I think I've seen some support for barcodes there.

    --
    Votez ecolo : Chiez dans l'urne !
    1. Re:bar codes by llefler · · Score: 4, Informative

      While you can print images on some barcode printers, most deal with plain text. Here is code that prints the same barcode using three different programming languages.

      Intermec IPL
      B17;o500,100;f3;c6,0,0;h200;w4;i1;d3,12345
      ( prefixed/suffixed with STX/ETX codes, which Slashdot happily strips)

      Zebra ZPL
      ^FO100,725^BCN,200,N,N,N,N^FV12345^FS

      Eltron EPL
      B700,500,2,1,4,12,200,N,"12345"

      If you are really interested in learning the languages, you can download them in PDF format from the manufacturers. (Eltron is now owned by Zebra)

      We're currently using software from Loftware to handle most of our barcode printing. It has a decent (but not great) GUI designer. And it's not cheap or OS. My biggest problem with it is that it stores the printer type in the label. It's entirely too rigid. For example; we purchased Intermec 3400D printers to create PDF417s. But all of the rest of our printers are 3400Bs. While the D model can do everything a B model can do, Loftware doesn't allow you to print a B label on a D printer. OTOH, it has a nice feature where you can use a label design as a template, then drop a text data file in a directory and it will print the label. It's a simple way to interface with other applications.

      BTW, an earlier poster implied that UPC was synonymous with barcode. That's like telling someone who asks for a PC to go see Dell. It may be one of the more commonly known formats, but there is much more to them than UPCs. (Or EAN barcodes for the non-american viewers)

      --
      It is amazing what you can accomplish if you do not care who gets the credit. -- Harry Truman
  3. Same here. by GigsVT · · Score: 4, Informative

    We looked for something like this a while back.

    What we wanted to do is use color thermal or rollfed inkjet to print a picture of the product on the carton label with the barcode.

    Every rollfed color printer we looked at had fatal flaws. Most used a proprietary language for programming. "But we have Windows print driver!!" Big fucking deal, didn't help us, there's no windows software that can do what we needed anyway. Why are open standards to damn hard to understand? We'd have probably bought your hardware if you hadn't decided to be assholes.

    Only one supported a standard language, PCL/XL, and that was the color rollfed inkjet. Which unfortunately used proprietary HP ink cartridges that cost $199 a piece. That's for each color, so $800 to change all ink cartridges. They were only like 350ml IIRC.

    Anyway, our plan was to use enscript, along with imagemagick, and some other piece to create the barcode (like pbmupc maybe), and then compose them all into an image with shell scripts, and print them the normal way.

    Unfortunately, we gave up on the project when we realized that no one makes suitable hardware.

    --
    I've had enough abrasive sigs. Kittens are cute and fuzzy.
  4. Do your own... by innosent · · Score: 4, Informative

    We use the Zebra printers where I work, and from my experience, you can do any label you need by sending the ZPL commands. All of the typesetting, graphics, and text can be coded into the fields, as well as the fonts and logic for printing barcodes. You can print to them in raster mode, too, but why do you need to?

    Depending on your needs, it should only take a matter of an hour or two to code up something to generate ZPL from the user's requests, or you may be able to lex/yacc it from another format. Read the programmers manual that came with the printers (or at least should have). There are plenty of examples in there for barcodes, text, images, reverse printing, vertical printing, etc. I've done this for inventory coding (probably simpler than your needs), and it only took about 20 minutes of trial-and-error to get my ZPL script right. (And for reference, the format is a lot like a simplified PCL, so if you've had experience with PCL, it should be cake.)

    --
    --That's the point of being root, you can do anything you want, even if it's stupid.
  5. Kbarcode by neves · · Score: 3, Informative
    Try this great kde 3.0 application: KBarcode. It can work with three different barcode engines: Maybe you want to use the barcode engines directly.
  6. Re:Barcode printing - YAY!!! New acronym... by tooth · · Score: 3, Informative
    I've been doing barcode stuff with Jetform for a while to all sorts of different printers, and I've still have yet to find anything that aproaches what jetform can do, even though design is a sucky program and annoys the heck out of me.

    Jetform is great because it has such a huge libary of printers to choose from... Upgraded your printers? No worries, just recompile your forms and presto, they're working again, no need to muck around with printer control codes, no need to recompile programs (good!!) or change the data streams. You can even compile in more than one printer so that you can have half new/half old if it's not a full upgrade.

    I've been trying to find an open source replacement like the poster asked, and I don't think it exists yet. LaTeX looked like it might be able to do it, but I really haven't checked it out that much, and besides, that could only replace the Central part (the driver), you'd still have to replace Design.

    At the moment where I work we've decided to stick with version 5.4 of central and design, it works fine on hpux 11i(central) and w2k(design) both OSes we'll stick with for a few years ... So i guess my advise is to stick with your current version if there is no real pressing need to change.