Acme-SaBalTongMun
view release on metacpan or search on metacpan
lib/Acme/SaBalTongMun.pm view on Meta::CPAN
use common::sense;
use GD;
use List::Util qw( max );
has 'radius' => ( isa => 'Int', is => 'rw', required => 1 );
has 'font' => ( isa => 'Str', is => 'rw', required => 1 );
has 'font_size' => ( isa => 'Int', is => 'rw', required => 1 );
has 'font_charset' => ( isa => 'Str', is => 'rw', default => 'Unicode' );
has 'color' => ( isa => 'Str', is => 'rw', required => 1 );
has 'people' => ( isa => 'ArrayRef[Str]', is => 'rw', required => 1 );
sub generate {
my $self = shift;
my $max_string_width
= max( map length, @{$self->people} ) * $self->font_size;
my $cx = $self->radius + $max_string_width;
my $cy = $self->radius + $max_string_width;
my $width = ( $self->radius + $max_string_width ) * 2;
my $height = ( $self->radius + $max_string_width ) * 2;
my $angle = ( 2 * 3.14 ) / @{$self->people};
#
# Make GD::Image
lib/Acme/SaBalTongMun.pm view on Meta::CPAN
my $dest_angle = 0;
for my $string ( @{$self->people} ) {
my $dest_x = $cx + ( $self->radius * cos $dest_angle );
my $dest_y = $cy + ( $self->radius * sin $dest_angle );
my $string_angle = (2 * 3.14) - $dest_angle;
$image->stringFT(
$image->colorAllocate( _get_rgb( $self->color ) ), # fgcolor
$self->font, # .ttf path
$self->font_size, # point size
$string_angle, # rotation angle
$dest_x, # X coordinates
$dest_y, # Y coordinates
$string,
{
charmap => $self->font_charset,
},
);
$dest_angle += $angle;
}
return $image;
}
sub _get_rgb { map hex, $_[0] =~ m/^#(..)(..)(..)$/ }
lib/Acme/SaBalTongMun.pm view on Meta::CPAN
=head1 VERSION
version 1.100830
=head1 SYNOPSIS
use Acme::SaBalTongMun;
my $sabal = Acme::SabalTongMun->new(
radius => 30,
font => '/home/keedi/.fonts/NanumGothic.ttf',
font_size => 20;
color => '#0000FF',
people => [
'a3r0',
'jeen',
'keedi',
'saillinux',
],
);
my $image->generate;
lib/Acme/SaBalTongMun.pm view on Meta::CPAN
The origin of the round robin in Korea is
Donghak Peasants Revolution(ëíë민íëª
, æ±å¸è¾²æ°éå).
=head1 ATTRIBUTES
=head2 radius
This attribute stores the radius
which is the center circle of the round robin.
=head2 font
This attribute stores the TrueType(*.ttf) font path.
Only the font which has unicode charmap is allowed.
=head2 font_size
This attribute stores the size of the font.
=head2 font_charset
This attribute stores the charset of the font.
This is optional and the default value is "Unicode".
=head2 color
This attribute stores the color of the font.
=head2 people
This attribte is an arrayref of strings
that are the members of the round robin.
=head1 METHODS
=head2 new
my $sabal = Acme::SabalTongMun->new(
radius => 30,
font => '/home/keedi/.fonts/NanumGothic.ttf',
font_size => 20;
color => '#0000FF',
people => [
'a3r0',
'jeen',
'keedi',
'saillinux',
],
);
This method will create and return Acme::SabalTongMun object.
( run in 1.831 second using v1.01-cache-2.11-cpan-ceb78f64989 )