blob: 7bb2c7c6c410545c0ce854ce3e9a839fd16900d3 (
plain)
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
|
=head1 NAME
Imager::Handy - simple access to common functions
=head1 SYNOPSIS
use Imager ':handy';
my $color = NC(255, 0, 0);
my $font = NF(1.0, 0, 0);
=head1 DESCRIPTION
If you use Imager with the C<:handy> import tag, it will export a
number of functions that can shorter your code.
=over
=item NC
=item newcolor
=item newcolour
Create a new Imager::Color object, supplying any parameters to the
new() method.
my $color = NC('red');
=item NF
=item newfont
Create a new Imager::Font object, supplying any parameters to the
new() method.
my $font = NF(file => 'foo.ttf');
=item NCF
Create a new L<Imager::Color::Font> object, supplying any parameter to
the new() method.
my $colorf = NCF(1.0, 0, 0);
=back
=head1 BUGS
NC() can be mostly replaced by supplying the color name or other
description directly to the drawing method.
=head1 AUTHOR
Tony Cook <tony@imager.perl.org>
=cut
|