Has anyone worked with Text::Wrap?<br><br>Here's my problem - I have a image dimension of 125 X 125 and a graphic string that extends past the width 125 to 130 and so on. So far I've come to the conclusion that Text::wrap is the way to go. <br><br>Here's my attempt<br><br>use Text::Wrapper;<br>use POSIX qw(floor);<br>...<br><br>&Text::wrap::columns = POSIX::floor(125/5);<br>&text = wrap("","",&text);<br>$image->Annotate(text=>$text);<br><br>The code runs without any errors, but it just doesn't work!<br>