Image::Button 0.53 review

Download
by rbytes.net on

Image::Button is a base class for building PNG buttons using GD. SYNOPSIS use Image::Button::Rect; my $b1 = new Image::B

License: Perl Artistic License
File size: 8K
Developer: Juan M. Garcia-Reyero
0 stars award from rbytes.net

Image::Button is a base class for building PNG buttons using GD.

SYNOPSIS

use Image::Button::Rect;

my $b1 = new Image::Button::Rect(text => 'text b1',
font => 'newsgotn.ttf',
fontsize => 20,
file => 'b1.png');

# $b2 is like $b1, but with different text and going to another file
my $b2 = $b1->copy(text => 'text b2',
file => 'b2.png');

$b1->print;
$b2->print;

Image::Button builds simple PNG buttons of the type you would use in an on-line application. It provides facilities to build several of them, possibly related (same width and/or height). Modules to create different types of buttons can be easily integrated. The buttons it can create so far would not cause a graphic designer to jump from his chair, drooling with excitement. But he wouldn't fall from his chair in disgust either (I hope).

Requirements:
Perl

Image::Button 0.53 keywords