GD text in existing image

From: Daniel van den Oord (daniel304_at_planet.nl)
Date: 03/24/04


Date: Wed, 24 Mar 2004 12:25:05 +0100

I'm trying to put text in an existing image. I got this working with the
following code.
I need this because I am making a FAQ and want certain screenshots with auto
filled in names
I tried putting this lines in a working script though I get carbage on my
screen now.. I think this is a result of a conflict between content-type:
HTML/Text\n\n en binmode ?!?

How can I overcome this ?!?
#!/usr/bin/perl -w

use GD;

$im = newFromPng GD::Image("../../images/frontpage/circle.png");
$black = $im->colorAllocate(0,0,0);
$im->string(gdSmallFont,2,10,"Testing",$black);
binmode STDOUT;
print $im->png;