OK, lets say I create the following text using GD::Text, how then do I use it with a GD::Image object? In other words, what method do I call to position $gd_text on a png image?
my $gd_text = GD::Text->new(
text => 'Some text',
font => 'times.ttf',
ptsize => 14,
);