名前¶
Imager::QRCode - Generate QR Code with Imager using libqrencode
Imager::QRCode - libqrencodeを使って Imagerで QRコード生成.
概要¶
use Imager::QRCode;
my $qrcode = Imager::QRCode->new(
size => 2,
margin => 2,
version => 1,
level => 'M',
casesensitive => 1,
lightcolor => Imager::Color->new(255, 255, 255),
darkcolor => Imager::Color->new(0, 0, 0),
);
my $img = $qrcode->plot("blah blah");
$img->write(file => "qrcode.gif");
# or instance method
use Imager::QRCode qw(plot_qrcode);
my $img = plot_qrcode("blah blah", \%params);
$img->write(file => "qrcode.gif");
説明¶
This module allows you to generate QR Code with Imager. This module use libqrencode '2.0.0' and above.
このモジュールは Imagerでの QRコード生成を可能にします. このモジュールは libqrencode '2.0.0'以上を利用します.
メソッド¶
- new
-
$qrcode = Imager::QRCode->new(%params);The
new()constructor method instantiates a new Imager::QRCode object.new()accepts the following parameters.size- Horizontal and vertical size of module(dot). Default is 4.margin- Margin size of QR Code. Default is 3.level- Error collectin level. Valid values are 'M', 'L', 'Q' or 'H'. Default is 'L'.version- Version of the symbol. If specify '0', this module chooses the minimum version for the input data. Default is '0'.mode- Encoding mode. Valid values are 'numerical', 'alpha-numerical', '8-bit' or 'kanji'. Default is '8-bit'.If not give
casesensitivethen should be givenmode. If 'kanji' is given, characters will be encoded as Shift-JIS characters. If '8-bit' is given, all of non-alpha-numerical characters will be encoded as is. If you want to embed UTF-8 string, choose '8-bit'.casesensitive- If your application is case-sensitive using 8-bit characters, set to '1'. Default is '0'.
- plot($text)
-
$img = $qrcode->plot("blah blah");Create a new QR Code image. This method returns Imager object ploted QR Code with the given text.
- new
-
$qrcode = Imager::QRCode->new(%params);new()コンストラクタメソッドは Imager::QRCodeオブジェクトを生成します.new()は以下のパラメータを受け取ることができます.size- モジュール(ドット)の水平方向, 垂直方向のサイズ. デフォルトは 4.margin- QRコードのマージンサイズ. デフォルトは 3.level- エラー訂正レベル. 'M', 'L', 'Q', 'H'のいずれか. デフォルトは 'L'.version- シンボルのバージョン. もし '0'を指定した場合, このモジュールは 入力データに必要となる最低限のバージョンを選択します. デフォルトは '0'.mode- 符号化モード. 'numerical', 'alpha-numerical', '8-bit', 'kanji'のいずれかの 値となります. デフォルトは '8-bit'.casesensitiveを指定しない場合,modeを指定すべきです. kanji'を指定した場合, 文字列は Shift_JISでエンコードされていることを想定します. '8-bit'を指定した場合は, アルファベット・数字以外の文字はそのまま扱います. UTF-8文字列を埋め込みたい場合は, '8-bit'を選択します.casesensitive- もし 8-bit文字列の大文字小文字を区別するのであれば 1を設定します. デフォルトは 0.
- plot($text)
-
$img = $qrcode->plot("blah blah");QRコードイメージを作成します. このメソッドは与えられた文字列を QRコードに描画した Imagerオブジェクトを返します.
INSTANT METHODS¶
- plot_qrcode($text, \%params)
-
Instant method.
$textis input text.%paramsis same paramater asnew().
- plot_qrcode($text, \%params)
-
インスタントメソッド.
$textは入力テキスト.%paramsはnew()に渡すパラメータと 同様のものになります.
SEE ALSO¶
Imager, http://www.qrcode.com/, http://megaui.net/fukuchi/works/qrencode/index.en.html
作者¶
Yoshiki KURIHARA <kurihara __at__ cpan.org>
THANKS¶
Tokuhiro Matsuno
LICENCE AND COPYRIGHT¶
Copyright (c) 2011, Yoshiki KURIHARA <kurihara __at__ cpan.org>.
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See perlartistic.