MAC Universal Barcode Font 8.0 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News MAC Universal Barcode Font 8.0 (Default branch)
# 1  
Old 05-16-2008
MAC Universal Barcode Font 8.0 (Default branch)

The IDAutomation Universal Barcode Font Package creates multiple barcode types from a single advanced font. The MAC install package includes examples for Office 2004, FileMaker, and OpenOffice. Java, C++, and AppleScript source code are available in the purchased version. It supports multiple operating systems and languages, including double-byte character sets, such as Japanese, Chinese, and Korean. It supports several barcode types including Code-128, GS1-128, EAN-128, Code-39, Interleaved 2 of 5, MSI, Codabar, USPS Intelligent Mail, OneCode, Postnet, and Planet.License: SharewareChanges:
The package has been updated to support newdimensions of the USPSIntelligent Mail barcode type and includes newinstall packages,examples, source code, and font encoders.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. Linux

Why our application can't show the BarCode Font?

please (1 Reply)
Discussion started by: gongweixiang
1 Replies

2. Debian

Why our application can't show the BarCode Font?

We use the debian 4.0 Linux with the wine 1.0. When we run our application on this platform, there is a problem: The Barcode can't be displayed correctly, but occurs some Garbled. The font we use is “Carolinabar-B39-25F2”. But when we install the wine-0.9.25 instead of wine-1.0, the barcode can... (1 Reply)
Discussion started by: gongweixiang
1 Replies
Login or Register to Ask a Question
Barcode::Code39(3pm)					User Contributed Perl Documentation				      Barcode::Code39(3pm)

NAME
GD::Barcode::Code39 - Create Code39 barcode image with GD SYNOPSIS
ex. CGI use GD::Barcode::Code39; binmode(STDOUT); print "Content-Type: image/png "; print GD::Barcode::Code39->new('*CODE39IMG*')->plot->png; with Error Check my $oGdBar = GD::Barcode::Code39->new('*123456789;*'); die $GD::Barcode::Code39::errStr unless($oGdBar); #Invalid Characters DESCRIPTION
GD::Barcode::Code39 is a subclass of GD::Barcode and allows you to create CODE-39 barcode image with GD. This module based on "Generate Barcode Ver 1.02 By Shisei Hanai 97/08/22". new $oGdBar = GD::Barcode::Code39->new($sTxt); Constructor. Creates a GD::Barcode::Code39 object for $sTxt. plot() $oGd = $oGdBar->plot([Height => $iHeight, NoText => 0 | 1]); creates GD object with barcode image for the $sTxt specified at new method. $iHeight is height of the image. If NoText is 1, the image has no text image of $sTxt. ex. my $oGdB = GD::Barcode::Code39->new('*12345*'); my $oGD = $oGdB->plot(NoText=>1, Height => 20); # $sGD is a GD image with Height=>20 pixels, with no text. barcode() $sPtn = $oGdBar->barcode(); returns a barcode pattern in string with '1' and '0'. '1' means black, '0' means white. ex. my $oGdB = GD::Barcode::Code39->new('*12345*'); my $sPtn = $oGdB->barcode(); # $sPtn = ''; $errStr $GD::Barcode::Code39::errStr has error message. $text $oGdBar->{text} has barcode text based on $sTxt specified in new method. AUTHOR
Kawai Takanori GCD00051@nifty.ne.jp COPYRIGHT
The GD::Barocde::Code39 module is Copyright (c) 2000 Kawai Takanori. Japan. All rights reserved. You may distribute under the terms of either the GNU General Public License or the Artistic License, as specified in the Perl README file. SEE ALSO
GD::Barcode perl v5.12.3 2003-05-29 Barcode::Code39(3pm)