NAME
Image::Identicon - Generate Identicon image
バージョン
Version 0.02
概要
use Image::Identicon;
my $identicon = Image::Identicon->new(salt=>$salt);
my $image = $identicon->render(); # or pass 32bit integer.
binmode(*STDOUT);
print "Content-Type: image/png\r\n\r\n";
print $image->{image}->png;
エクスポート
no functions exported.
メソッド
$pkg->new({ salt=>$salt })
Create generator.
$identicon->render(\%opts)
$opts->{size} - image size
$opts->{code} - 32bit integer code
Render Image. Returns hashref. $result->{image} will be GD::Image instance.
$identicon->identicon_code()
calculate 32bit Identicon code from IP address.
$identicon->decode($code)
decode patch information from 32bit integer.
DEPENDENCY
This module uses GD and Digest::SHA.
著者
YAMASHINA Hio, <hio at cpan.org>
バグ
Please report any bugs or feature requests to bug-image-identicon at rt.cpan.org
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Image-Identicon. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
サポート
You can find documentation for this module with the perldoc command.
perldoc Image::Identicon
You can also look for information at:
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
RT: CPAN's request tracker
Search CPAN
例
http://clair.hio.jp/~hio/identicon/
謝辞
Don Park originally implements identicon.
http://www.docuverse.com/blog/donpark/2007/01/18/visual-security-9-block-ip-identification
著作権及びライセンス
Copyright 2007 YAMASHINA Hio, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
名前
Image::Identicon - Generate Identicon image
バージョン
Version 0.02
概要
use Image::Identicon;
my $identicon = Image::Identicon->new(salt=>$salt);
my $image = $identicon->render(); # or pass 32bit integer.
binmode(*STDOUT);
print "Content-Type: image/png\r\n\r\n";
print $image->{image}->png;
エクスポート
no functions exported.
メソッド
$pkg->new({ salt=>$salt })
Create identicon generator.
$identicon->render(\%opts)
$opts->{size} - image size (width and height)
$opts->{code} - 32bit integer code
Create an identicon image. Returns hashref. $result->{image} will be GD::Image instance.
$identicon->identicon_code()
calculate 32bit Identicon code from IP address.
$identicon->decode($code)
decode patch information from 32bit integer.
DEPENDENCY
This module uses GD and Digest::SHA.
著者
YAMASHINA Hio, <hio at cpan.org>
バグ
Please report any bugs or feature requests to bug-image-identicon at rt.cpan.org
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Image-Identicon. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
サポート
You can find documentation for this module with the perldoc command.
perldoc Image::Identicon
You can also look for information at:
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
RT: CPAN's request tracker
Search CPAN
例
http://clair.hio.jp/~hio/identicon/
謝辞
Don Park originally implements identicon.
http://www.docuverse.com/blog/donpark/2007/01/18/visual-security-9-block-ip-identification
著作権及びライセンス
Copyright 2007 YAMASHINA Hio, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.