After running your script and another test script based on the SYNOPSIS of the GD::Text::Wrap module, my conclusion is that unless I miss something critical about the usage, it may be something wrong with the module. Both scripts result image contains no text, but only some strange colored rectangles

use strict; use warnings; use GD; use GD::Text::Wrap; my $gd = GD::Image->new(800,600); my $white = $gd->colorAllocate(255,255,255); my $blue = $gd->colorAllocate(0,0,255); my $text = <<EOSTR; Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. EOSTR my $wrapbox = GD::Text::Wrap->new( $gd, line_space => 4, color => $blue, text => $text, ); $wrapbox->set_font(gdMediumBoldFont); $wrapbox->set_font('arial', 12); $wrapbox->set(align => 'left', width => 120); $wrapbox->draw(10,140); $gd->rectangle($wrapbox->get_bounds(10,140), $blue); open my $file, '>', 'outfile.jpg'; binmode $file; print { $file } $gd->jpeg; close $file;

An alternative solution is to use PerlMagick (ImageMagick).

Update: revised as suggested by gmargo.

Update2: revised as suggested by gmargo :-) Thank you.


In reply to Re: Add text to image by stefbv
in thread Add text to image by xachen

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.