in reply to GD::Text Problems
I personally stick to plain GD or even worse, plain gdlib code ;) </code>use GD; use GD::Text::Align; my $gd = GD::Image->new(800,600); # allocate colours, do other things. my $align = GD::Text::Align->new( $gd #instance of GD::Image valign => 'top', halign => 'right', ); $align->set_font('cetus.ttf', 12); $align->set_text('some string'); @bb = $align->bounding_box(200, 400, PI/3); # you can do things based on the bounding box here $align->draw(200, 400, PI/3); open(JPEG,">foo.jpg"); binmode(JPEG); print JPEG $gd->jpeg(75); close(JPEG);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: GD::Text Problems
by Anonymous Monk on Jan 04, 2003 at 16:18 UTC |