/usr/share/perl5/Data/Random.pm is in libdata-random-perl 0.12-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 | ################################################################################
# Data::Random
#
# A module used to generate random data.
################################################################################
package Data::Random;
################################################################################
# - Modules and Libraries
################################################################################
use strict;
use warnings;
use 5.005_62;
use Carp qw(cluck);
use Time::Piece;
#use Data::Random::WordList;
require Exporter;
################################################################################
# - Global Constants and Variables
################################################################################
use vars qw(
@ISA
%EXPORT_TAGS
@EXPORT_OK
@EXPORT
);
@ISA = qw(Exporter);
%EXPORT_TAGS = (
'all' => [
qw(
rand_words
rand_chars
rand_set
rand_enum
rand_date
rand_time
rand_datetime
rand_image
)
]
);
@EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
@EXPORT = qw();
$Data::Random::VERSION = '0.12';
################################################################################
# - Subroutines
################################################################################
################################################################################
# rand_words()
################################################################################
sub rand_words {
# Get the options hash
my %options = @_;
# Initialize max and min vars
$options{'min'} ||= 1;
$options{'max'} ||= 1;
# Initialize the wordlist param
$options{'wordlist'} ||= '';
# Make sure the max and min vars are OK
cluck('min value cannot be larger than max value') && return
if $options{'min'} > $options{'max'};
cluck('min value must be a positive integer') && return
if $options{'min'} < 0 || $options{'min'} != int( $options{'min'} );
cluck('max value must be a positive integer') && return
if $options{'max'} < 0 || $options{'max'} != int( $options{'max'} );
# Initialize the size var
$options{'size'} ||=
int( rand( $options{'max'} - $options{'min'} + 1 ) ) + $options{'min'};
# Make sure the size var is OK
cluck('size value must be a positive integer') && return
if $options{'size'} < 0 || $options{'size'} != int( $options{'size'} );
# Initialize the shuffle flag
$options{'shuffle'} =
exists( $options{'shuffle'} ) ? $options{'shuffle'} : 1;
my $wl;
my $close_wl = 1;
# Check for a pre-existing wordlist object
if ( ref( $options{'wordlist'} ) ) {
$wl = $options{'wordlist'};
$close_wl = 0;
}
else {
require Data::Random::WordList;
# Create a new wordlist object
$wl = Data::Random::WordList->new( wordlist => $options{'wordlist'} );
}
# Get the random words
my $rand_words = $wl->get_words( $options{'size'} );
# Close the word list
$wl->close() if $close_wl;
# Shuffle the words around
_shuffle($rand_words) if $options{'shuffle'};
# Return an array or an array reference, depending on the context in which the sub was called
if ( wantarray() ) {
return @$rand_words;
}
else {
return $rand_words;
}
}
################################################################################
# rand_chars()
################################################################################
sub rand_chars {
# Get the options hash
my %options = @_;
my @chars;
# Build named character sets if one wasn't supplied
if ( ref( $options{'set'} ) ne 'ARRAY' ) {
my @charset = ();
if ( $options{'set'} eq 'all' ) {
@charset =
( 0 .. 9, 'a' .. 'z', 'A' .. 'Z', '#', ',',
qw(~ ! @ $ % ^ & * ( ) _ + = - { } | : " < > ? / . ' ; ] [ \ `)
);
}
elsif ( $options{'set'} eq 'alpha' ) {
@charset = ( 'a' .. 'z', 'A' .. 'Z' );
}
elsif ( $options{'set'} eq 'upperalpha' ) {
@charset = ( 'A' .. 'Z' );
}
elsif ( $options{'set'} eq 'loweralpha' ) {
@charset = ( 'a' .. 'z' );
}
elsif ( $options{'set'} eq 'numeric' ) {
@charset = ( 0 .. 9 );
}
elsif ( $options{'set'} eq 'alphanumeric' ) {
@charset = ( 0 .. 9, 'a' .. 'z', 'A' .. 'Z' );
}
elsif ( $options{'set'} eq 'misc' ) {
@charset =
( '#', ',',
qw(~ ! @ $ % ^ & * ( ) _ + = - { } | : " < > ? / . ' ; ] [ \ `)
);
}
$options{'set'} = \@charset;
}
@chars = rand_set(%options);
return wantarray ? @chars : join('', @chars);
}
################################################################################
# rand_set()
################################################################################
sub rand_set {
# Get the options hash
my %options = @_;
# Make sure the set array was defined
cluck('set array is not defined') && return if !$options{'set'};
$options{'size'} = 1
unless exists( $options{'min'} ) || exists( $options{'max'} )
|| exists( $options{'size'} );
# Initialize max and min vars
$options{'min'} ||= 0;
$options{'max'} ||= @{ $options{'set'} };
# Make sure the max and min vars are OK
cluck('min value cannot be larger than max value') && return
if $options{'min'} > $options{'max'};
cluck('min value must be a positive integer') && return
if $options{'min'} < 0 || $options{'min'} != int( $options{'min'} );
cluck('max value must be a positive integer') && return
if $options{'max'} < 0 || $options{'max'} != int( $options{'max'} );
# Initialize the size var
$options{'size'} ||=
int( rand( $options{'max'} - $options{'min'} + 1 ) ) + $options{'min'};
# Make sure the size var is OK
cluck('size value must be a positive integer') && return
if $options{'size'} < 0 || $options{'size'} != int( $options{'size'} );
cluck('size value exceeds set size') && return
if $options{'size'} > @{ $options{'set'} };
# Initialize the shuffle flag
$options{'shuffle'} =
exists( $options{'shuffle'} ) ? $options{'shuffle'} : 1;
# Get the random items
my %results = ();
for ( my $i = 0 ; $i < $options{'size'} ; $i++ ) {
my $result;
do {
$result = int( rand( @{ $options{'set'} } ) );
} while ( exists( $results{$result} ) );
$results{$result} = 1;
}
my @results = sort { $a <=> $b } keys %results;
# Shuffle the items
_shuffle( \@results ) if $options{'shuffle'};
# Return an array or an array reference, depending on the context in which the sub was called
if ( wantarray() ) {
return @{ $options{'set'} }[@results];
}
else {
return \@{ $options{'set'} }[@results];
}
}
################################################################################
# rand_enum()
################################################################################
sub rand_enum {
# Get the options hash
my %options = @_;
# Make sure the set array was defined
cluck('set array is not defined') && return if !$options{'set'};
return $options{'set'}->[ int( rand( @{ $options{'set'} } ) ) ];
}
################################################################################
# rand_date()
################################################################################
sub rand_date {
# Get the options hash
my %options = @_;
my $min;
my $max;
# Get today's date
my $t = localtime;
my ( $year, $month, $day ) = split('-', $t->ymd);
my $today = Time::Piece->strptime($t->ymd, "%Y-%m-%d");
if ( $options{'min'} ) {
if ( $options{'min'} eq 'now' ) {
$min = $today;
}
else {
$min = Time::Piece->strptime($options{'min'}, '%Y-%m-%d');
}
}
else {
$min = $today;
}
if ( $options{'max'} ) {
if ( $options{'max'} eq 'now' ) {
$max = $today;
}
else {
$max = Time::Piece->strptime($options{max}, "%Y-%m-%d");
}
}
else {
$max = $min->add_years(1);
}
my $delta_days = int($max->julian_day) - int($min->julian_day);
cluck('max date is later than min date') && return if $delta_days < 0;
my $result = $min + ( 3600 * 24 * int( rand($delta_days + 1) ) );
return $result->ymd;
}
################################################################################
# rand_time()
################################################################################
sub rand_time {
# Get the options hash
my %options = @_;
my ( $min_hour, $min_min, $min_sec, $max_hour, $max_min, $max_sec );
if ( $options{'min'} ) {
if ( $options{'min'} eq 'now' ) {
# Get the current time
my ( $hour, $min, $sec ) = ( localtime() )[ 2, 1, 0 ];
( $min_hour, $min_min, $min_sec ) = ( $hour, $min, $sec );
}
else {
( $min_hour, $min_min, $min_sec ) = split ( /\:/, $options{'min'} );
cluck('minimum time is not in valid time format HH:MM:SS') && return
if ( $min_hour > 23 ) || ( $min_hour < 0 );
cluck('minimum time is not in valid time format HH:MM:SS') && return
if ( $min_min > 59 ) || ( $min_min < 0 );
cluck('minimum time is not in valid time format HH:MM:SS') && return
if ( $min_sec > 59 ) || ( $min_sec < 0 );
}
}
else {
( $min_hour, $min_min, $min_sec ) = ( 0, 0, 0 );
}
if ( $options{'max'} ) {
if ( $options{'max'} eq 'now' ) {
# Get the current time
my ( $hour, $min, $sec ) = ( localtime() )[ 2, 1, 0 ];
( $max_hour, $max_min, $max_sec ) = ( $hour, $min, $sec );
}
else {
( $max_hour, $max_min, $max_sec ) = split ( /\:/, $options{'max'} );
cluck('maximum time is not in valid time format HH:MM:SS') && return
if ( $max_hour > 23 ) || ( $max_hour < 0 );
cluck('maximum time is not in valid time format HH:MM:SS') && return
if ( $max_min > 59 ) || ( $max_min < 0 );
cluck('maximum time is not in valid time format HH:MM:SS') && return
if ( $max_sec > 59 ) || ( $max_sec < 0 );
}
}
else {
( $max_hour, $max_min, $max_sec ) = ( 23, 59, 59 );
}
my $min_secs = $min_hour * 3600 + $min_min * 60 + $min_sec;
my $max_secs = ( $max_hour * 3600 ) + ( $max_min * 60 ) + $max_sec;
my $delta_secs = $max_secs - $min_secs;
cluck('min time is later than max time') && return if $delta_secs < 0;
$delta_secs = int( rand( $delta_secs + 1 ) );
my $result_secs = $min_secs + $delta_secs;
my $hour = int( $result_secs / 3600 );
my $min = int( ( $result_secs - ( $hour * 3600 ) ) / 60 );
my $sec = $result_secs % 60;
return sprintf( "%02u:%02u:%02u", $hour, $min, $sec );
}
################################################################################
# rand_datetime()
################################################################################
sub rand_datetime {
# Get the options hash
my %options = @_;
# Get today's date
my $now = localtime;
my $minimum;
my $maximum;
if ( $options{min} ) {
if ( $options{min} eq 'now' ) {
$minimum = Time::Piece->strptime(
$now->strftime('%Y-%m-%d %H:%M:%S'),
'%Y-%m-%d %H:%M:%S'
);
}
else {
$minimum = Time::Piece->strptime(
$options{min},
'%Y-%m-%d %H:%M:%S'
);
}
}
else {
$minimum = $now;
}
if ( $options{max} ) {
if ( $options{max} eq 'now' ) {
$maximum = Time::Piece->strptime(
$now->strftime('%Y-%m-%d %H:%M:%S'),
'%Y-%m-%d %H:%M:%S'
);
}
else {
$maximum = Time::Piece->strptime(
$options{max},
'%Y-%m-%d %H:%M:%S'
);
}
}
else {
$maximum = $minimum->add_years(1);
}
my $delta_secs = $maximum - $minimum;
cluck('max_date is later than min date') && return if $delta_secs < 0;
$delta_secs = int( rand( $delta_secs + 1 ) );
my $result = $minimum + $delta_secs;
return $result->strftime('%Y-%m-%d %H:%M:%S');
}
################################################################################
# rand_image()
################################################################################
sub rand_image {
# Get the options hash
my %options = @_;
eval q{ require GD; };
cluck($@) && return if $@;
$options{'minwidth'} ||= 1;
$options{'maxwidth'} ||= 100;
$options{'width'} ||=
int( rand( $options{'maxwidth'} - $options{'minwidth'} + 1 ) ) +
$options{'minwidth'};
$options{'minheight'} ||= 1;
$options{'maxheight'} ||= 100;
$options{'height'} ||=
int( rand( $options{'maxheight'} - $options{'minheight'} + 1 ) ) +
$options{'minheight'};
$options{'minpixels'} ||= 0;
$options{'maxpixels'} ||= $options{'width'} * $options{'height'};
$options{'pixels'} ||=
int( rand( $options{'maxpixels'} - $options{'minpixels'} + 1 ) ) +
$options{'minpixels'};
$options{'bgcolor'} ||= _color();
$options{'fgcolor'} ||= _color();
my $image = GD::Image->new( $options{'width'}, $options{'height'} );
my $bgcolor = $image->colorAllocate( @{ $options{'bgcolor'} } );
my $fgcolor = $image->colorAllocate( @{ $options{'fgcolor'} } );
$image->rectangle( 0, 0, $options{'width'}, $options{'height'}, $bgcolor );
for ( my $i = 0 ; $i < $options{'pixels'} ; $i++ ) {
my $x = int( rand( $options{'width'} + 1 ) );
my $y = int( rand( $options{'height'} + 1 ) );
$image->setPixel( $x, $y, $fgcolor );
}
return $image->png();
sub _color {
return [ int( rand(256) ), int( rand(256) ), int( rand(256) ) ];
}
}
################################################################################
# _shuffle()
################################################################################
sub _shuffle {
my $array = shift;
for ( my $i = @$array - 1 ; $i >= 0 ; $i-- ) {
my $j = int( rand( $i + 1 ) );
@$array[ $i, $j ] = @$array[ $j, $i ] if $i != $j;
}
}
1;
=head1 NAME
Data::Random - Perl module to generate random data
=head1 SYNOPSIS
use Data::Random qw(:all);
my @random_words = rand_words( size => 10 );
my @random_chars = rand_chars( set => 'all', min => 5, max => 8 );
my $string = rand_chars( set => 'all', min => 5, max => 8 );
my @random_set = rand_set( set => \@set, size => 5 );
my $random_enum = rand_enum( set => \@set );
my $random_date = rand_date();
my $random_time = rand_time();
my $random_datetime = rand_datetime();
open(my $file, ">", "rand_image.png") or die $!;
binmode($file);
print $file rand_image( bgcolor => [0, 0, 0] );
close($file);
=head1 DESCRIPTION
A module used to generate random data. Useful mostly for test programs.
=head1 METHODS
=head2 rand_words()
This returns a list of random words given a wordlist. See below for possible parameters.
=over 4
=item *
wordlist - the path to the wordlist file. On Debian systems one can be found at /usr/share/dict/words. You can also optionally supply a Data::Random::WordList object to keep a persistent wordlist. The default is the wordlist distributed with this module.
=item *
min - the minimum number of words to return. The default is 1.
=item *
max - the maximum number of words to return. The default is 1.
=item *
size - the number of words to return. The default is 1. If you supply a value for 'size', then 'min' and 'max' aren't paid attention to.
=item *
shuffle - whether or not the words should be randomly shuffled. Set this to 0 if you don't want the words shuffled. The default is 1. Random::Data::WordList returns words in the order that they're viewed in the word list file, so shuffling will make sure that the results are a little more random.
=back
=head2 rand_chars()
When called in a list context this returns
a list of random characters given a set of characters.
In a scalar context it returns a string of random characters.
See below for possible parameters.
=over 4
=item *
set - the set of characters to be used. This value can be either a reference to an array of strings, or one of the following:
alpha - alphabetic characters: a-z, A-Z
upperalpha - upper case alphabetic characters: A-Z
loweralpha - lower case alphabetic characters: a-z
numeric - numeric characters: 0-9
alphanumeric - alphanumeric characters: a-z, A-Z, 0-9
char - non-alphanumeric characters: # ~ ! @ $ % ^ & * ( ) _ + = - { } | : " < > ? / . ' ; ] [ \ `
all - all of the above
=item *
min - the minimum number of characters to return. The default is 0.
=item *
max - the maximum number of characters to return. The default is the size of the set.
=item *
size - the number of characters to return. The default is 1. If you supply a value for 'size', then 'min' and 'max' aren't paid attention to.
=item *
shuffle - whether or not the characters should be randomly shuffled. Set this to 0 if you want the characters to stay in the order received. The default is 1.
=back
=head2 rand_set()
This returns a random set of elements given an initial set. See below for possible parameters.
=over 4
=item *
set - the set of strings to be used. This should be a reference to an array of strings.
=item *
min - the minimum number of strings to return. The default is 0.
=item *
max - the maximum number of strings to return. The default is the size of the set.
=item *
size - the number of strings to return. The default is 1. If you supply a value for 'size', then 'min' and 'max' aren't paid attention to.
=item *
shuffle - whether or not the strings should be randomly shuffled. Set this to 0 if you want the strings to stay in the order received. The default is 1.
=back
=head2 rand_enum()
This returns a random element given an initial set. See below for possible parameters.
=over 4
=item *
set - the set of strings to be used. This should be a reference to an array of strings.
=back
=head2 rand_date()
This returns a random date in the form "YYYY-MM-DD". 2-digit years are not currently supported. Efforts are made to make sure you're returned a truly valid date - ie, you'll never be returned the date February 31st. See the options below to find out how to control the date range. Here are a few examples:
# returns a date somewhere in between the current date, and one year from the current date
$date = rand_date();
# returns a date somewhere in between September 21, 1978 and September 21, 1979
$date = rand_date( min => '1978-9-21' );
# returns a date somewhere in between September 21, 1978 and the current date
$date = rand_date( min => '1978-9-21', max => 'now' );
# returns a date somewhere in between the current date and September 21, 2008
$date = rand_date( min => 'now', max => '2008-9-21' );
See below for possible parameters.
=over 4
=item *
min - the minimum date to be returned. It should be in the form "YYYY-MM-DD" or you can alternatively use the string "now" to represent the current date. The default is the current date;
=item *
max - the maximum date to be returned. It should be in the form "YYYY-MM-DD" or you can alternatively use the string "now" to represent the current date. The default is one year from the minimum date;
=back
=head2 rand_time()
This returns a random time in the form "HH:MM:SS". 24 hour times are supported. See the options below to find out how to control the time range. Here are a few examples:
# returns a random 24-hr time (between 00:00:00 and 23:59:59)
$time = rand_time();
# returns a time somewhere in between 04:00:00 and the end of the day
$time = rand_time( min => '4:0:0' );
# returns a time somewhere in between 8:00:00 and the current time (if it's after 8:00)
$time = rand_time( min => '12:00:00', max => 'now' );
# returns a date somewhere in between the current time and the end of the day
$time = rand_time( min => 'now' );
See below for possible parameters.
=over 4
=item *
min - the minimum time to be returned. It should be in the form "HH:MM:SS" or you can alternatively use the string "now" to represent the current time. The default is 00:00:00;
=item *
max - the maximum time to be returned. It should be in the form "HH:MM:SS" or you can alternatively use the string "now" to represent the current time. The default is 23:59:59;
=back
=head2 rand_datetime()
This returns a random date and time in the form "YYYY-MM-DD HH:MM:SS". See the options below to find out how to control the date/time range. Here are a few examples:
# returns a date somewhere in between the current date/time, and one year from the current date/time
$datetime = rand_datetime();
# returns a date somewhere in between 4:00 September 21, 1978 and 4:00 September 21, 1979
$datetime = rand_datetime( min => '1978-9-21 4:0:0' );
# returns a date somewhere in between 4:00 September 21, 1978 and the current date
$datetime = rand_datetime( min => '1978-9-21 4:0:0', max => 'now' );
# returns a date somewhere in between the current date/time and the end of the day September 21, 2008
$datetime = rand_datetime( min => 'now', max => '2008-9-21 23:59:59' );
See below for possible parameters.
=over 4
=item *
min - the minimum date/time to be returned. It should be in the form "YYYY-MM-DD HH:MM:SS" or you can alternatively use the string "now" to represent the current date/time. The default is the current date/time;
=item *
max - the maximum date/time to be returned. It should be in the form "YYYY-MM-DD HH:MM:SS" or you can alternatively use the string "now" to represent the current date/time. The default is one year from the minimum date/time;
=back
=head2 rand_image()
This returns a random image. Currently only PNG images are supported. See below for possible parameters.
=over 4
=item *
minwidth - the minimum width of the image. The default is 1.
=item *
maxwidth - the maximum width of the image. The default is 100.
=item *
width - the width of the image. If you supply a value for 'width', then 'minwidth' and 'maxwidth' aren't paid attention to.
=item *
minheight - the minimum height of the image. The default is 1.
=item *
maxheight - the maximum height of the image. The default is 100.
=item *
height - the height of the image. If you supply a value for 'width', then 'minwidth' and 'maxwidth' aren't paid attention to.
=item *
minpixels - the minimum number of random pixels to display on the image. The default is 0.
=item *
maxpixels - the maximum number of random pixels to display on the image. The default is width * height.
=item *
pixels - the number of random pixels to display on the image. If you supply a value for 'pixels', then 'minpixels' and 'maxpixels' aren't paid attention to.
=item *
bgcolor - the background color of the image. The value must be a reference to an RGB array where each element is an integer between 0 and 255 (eg. [ 55, 120, 255 ]).
=item *
fgcolor - the foreground color of the image. The value must be a reference to an RGB array where each element is an integer between 0 and 255 (eg. [ 55, 120, 255 ]).
=back
=head1 VERSION
0.12
=head1 AUTHOR
Originally written by: Adekunle Olonoh
Currently maintained by: Buddy Burden (barefoot@cpan.org), starting with version 0.06
=head1 CREDITS
Hiroki Chalfant
David Sarno
Michiel Beijen
=head1 COPYRIGHT
Copyright (c) 2000-2011 Adekunle Olonoh.
Copyright (c) 2011-2015 Buddy Burden.
All rights reserved. This program is free software; you
can redistribute it and/or modify it under the same terms as Perl itself.
=head1 SEE ALSO
L<Data::Random::WordList>
=cut
|