=encoding euc-jp =head1 名前 GD::Barcode::EAN8 - GDでEAN8(JAN8)バーコード・イメージを作成します =head1 概要 I use GD::Barcode::EAN8; binmode(STDOUT); print "Content-Type: image/png\n\n"; print GD::Barcode::EAN8->new('1234567')->plot->png; I<エラーチェック付き> my $oGdBar = GD::Barcode::EAN8->new('123456789'); die $GD::Barcode::EAN8::errStr unless($oGdBar); #長さが不正 =head1 説明 GD::Barcode::EAN8はGD::Barcodeのサブクラスで、 GDでEAN8(JAN8)バーコードイメージを作成することを可能にします。 このモジュールは"Generate Barcode Ver 1.02 By Shisei Hanai 97/08/22"を ベースにしています。 =head2 new I<$oGdBar> = GD::Barcode::EAN8->new(I<$sTxt>); コンストラクタ。 I<$sTxt>のためのGD::Barcode::EAN8 のオブジェクトを作成します。 I<$sTxt>は7あるいは8桁の数字([0-9])です。 もしI<$sTxt>が7桁であれば、あなたに代わってCDを計算します。 (訳者注:ドキュメント中は12桁になっていますが、7桁の間違い) =head2 plot() I<$oGd> = $oGdBar->plot([Height => I<$iHeight>, NoText => I<0 | 1>]); Lメソッドで指定されたI<$sTxt>のバーコードイメージを持った GDオブジェクトを作成します。I<$iHeight>はイメージの高さです。 もしIが1であればイメージにはI<$sTxt>のテキストのイメージは入りません。 例. my $oGdB = GD::Barcode::EAN8->new('1234567'); my $oGD = $oGdB->plot(NoText=>1, Height => 20); # $sGDはHeight=>20ピクセルでテキストなしのGDイメージになります =head2 barcode() I<$sPtn> = $oGdBar->barcode(); '1'と'0'の文字列でバーコードのパターン返します。 '1'は黒、'0'は白を意味します。 例. my $oGdB = GD::Barcode::EAN8->new('1234567'); my $sPtn = $oGdB->barcode(); # $sPtn = ''; =head2 $errStr $GD::Barcode::EAN8::errStr エラーメッセージが入ります。 =head2 $text $oGdBar->{$text} Lメソッドで指定されたI<$sTxt>をベースにしたバーコードのテキストが入ります。 =head1 作者 川合孝典 GCD00051@nifty.ne.jp =head1 著作権(COPYRIGHT) The GD::Barocde::EAN8 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. =head1 参考資料 GD::Barcode