BIRT Exchange Forum: Postal Barcodes - BIRT Exchange Forum

Jump to content


 

BIRT Poll: Have you ever done any development work on mobile?

Yes - lotsYes - someNo - but plan toNo time or interestWhat is mobile?
Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

Postal Barcodes Rate Topic: -----

#1 User is offline   Bob_26 Icon

  • Newbie
  • Pip
  • Group: Members
  • Posts: 1
  • Joined: 05-April 12


Posted 22 April 2012 - 08:58 PM

Does anyone have any idea if postal bar codes printing on envelopes are supported?
I'd like to include the ZIP/ZIP+4 bar codes in the destination address. Could the longer barcodes appears at the top of business envelope be included in it? I believe, but not sure they are called FIM-A and FIM-C at the left of the postage stamp. This would be a nice feature. I'm using OOo 3.2.0 on WinXP. What should I do to make this working? Thanks.
0

#2 User is offline   Harriet_25 Icon

  • Newbie
  • Pip
  • Group: Members
  • Posts: 1
  • Joined: 06-April 12


Posted 23 April 2012 - 02:01 AM

Actually it is possible. Which postal barcode do you want to print, POSTNET, PLANET, USPS OneCode, Royal Mail, Identcode or Leitcode? Barcode fonts are absolutely supported for the postal barcode. You may google it.
0

#3 User is offline   Lawrence_s Icon

  • Newbie
  • Pip
  • Group: Members
  • Posts: 1
  • Joined: 23-April 12


Posted 23 April 2012 - 07:27 PM

You may need a barcode fonts. I am sorry that I have not used it on OpenOffice, so I couldn't give you a details.
0

#4 User is offline   Emma_27 Icon

  • Newbie
  • Pip
  • Group: Members
  • Posts: 1
  • Joined: 23-April 12


Posted 23 April 2012 - 11:05 PM

Hi, it is easy to create a postal barcodes with Barcode True Type Font. Just copy and paste the barcode fonts under the Fonts Folder, then, you can create the barcodes in your program
0

#5 User is offline   Felix_lee Icon

  • Newbie
  • Pip
  • Group: Members
  • Posts: 1
  • Joined: 31-March 12


Posted 24 April 2012 - 01:45 AM

To print barcode on envelope, the very first thing you should do is to install a barcode control or barcode font, which supported generating barcode in varies application. Then connect to the printer to type the barcode.
0

#6 User is offline   clundquist Icon

  • Newbie
  • Pip
  • Group: Members
  • Posts: 1
  • Joined: 08-June 10


Posted 07 December 2012 - 10:16 PM

I downloaded the free postnet barcode (uspsbarcode.ttf). Then, since a postal barcode uses check digits and requires to be formatted in a specific way, I created a computed column of type string with the following expression;

var zipcode = row["zip_cd"].replace("-","");
var len = zipcode.length;
var total = 0;
var chk = 0;

for ( var i = 0; i < len; i++ ) {
var val = parseInt(zipcode[i]);
total = total + val;
}

if (total > 0) {
chk = 10 - (total%10);
if (chk == 10) {
chk = 0;
}
}

zipcode = "/" + zipcode + chk.toString() + ":";

zipcode;

Then just include your computed column on your report. Worked great for me.
0

#7 User is offline   Thomasssss Icon

  • Newbie
  • Pip
  • Group: Members
  • Posts: 1
  • Joined: 10-December 12


Posted 10 December 2012 - 11:47 PM

View PostBob_26, on 22 April 2012 - 08:58 PM, said:

Does anyone have any idea if postal bar codes printing on envelopes are supported?
I'd like to include the ZIP/ZIP+4 bar codes in the destination address. Could the longer barcodes appears at the top of business envelope be included in it? I believe, but not sure they are called FIM-A and FIM-C at the left of the postage stamp. This would be a nice feature. I'm using OOo 3.2.0 on WinXP. What should I do to make this working? Thanks.


What postal barcode type do you need?

This BIRT barcode generator plugin supports major postal barcode types, including USPS OneCode, PLANET, POSTNET, Identcode, Leitcode, RM4SCC.
Checksum is automatically calculated and added.

Have a try by just drag it to your report to print barcodes. :)
0

#8 User is offline   Ryan2 Icon

  • Newbie
  • Pip
  • Group: Members
  • Posts: 1
  • Joined: 26-December 12


Posted 26 December 2012 - 06:02 PM

View PostBob_26, on 22 April 2012 - 08:58 PM, said:

Does anyone have any idea if postal bar codes printing on envelopes are supported?
I'd like to include the ZIP/ZIP+4 bar codes in the destination address. Could the longer barcodes appears at the top of business envelope be included in it? I believe, but not sure they are called FIM-A and FIM-C at the left of the postage stamp. This would be a nice feature. I'm using OOo 3.2.0 on WinXP. What should I do to make this working? Thanks.

Yes, it is supported to print postal bar codeds on envelopes. Postal barcodes contain several types, including POSTNET, PLANET, USPS OneCode, Royal Mail, Identcode and Leitcode. Actually, you can use a BIRT Barcode Generator Add-inwhich supports to create all types of the Postal barcodes. It is convenient. You do not have to know much about any programming knowledge.
0

Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users