#!/usr/bin/perl use GD; use GD::Text::Align; my $gd = GD::Image->new(150,150); $white = $gd->colorAllocate(255,255,255); # $black = $gd->colorAllocate(0,0,0); # $red = $gd->colorAllocate(255,0,0); # $blue = $gd->colorAllocate(0,0,255); $gd->transparent($white); my $align = GD::Text::Align->new( $gd, valign => 'top', halign => 'right', ); $align->set_font('cetus.ttf', 12); $align->set_text('200 Files'); @bb = $align->bounding_box(100, 100, 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);