1. Your code doesn't really compile... looks like it's mainly just from not posting the full script -- but you're also using "white" when you should be allocating a color.
  2. Try using GD::Text::Align or GD::Text::Wrap instead of instantiating the superclass directly (i don't think the superclass can render itself)
  3. When you add things to a GD::Image, you need to do it "bottom up" ... if you're not carefull, your black box will apear on top of your text (so you can't see it)

Try this...

#!/usr/bin/perl -w use strict; use GD; use GD::Text::Align; my $image = new GD::Image( 320, 160 ); my $black = $image->colorAllocate( 0, 0, 0 ); my $white = $image->colorAllocate( 255, 255, 255 ); my $text = new GD::Text::Align( $image, font => gdLargeFont, text => "Perl Coder", color => $white, valign => "top", halign => "center", ); # the order of these two lines is important $image->filledRectangle( 15, 15, 150, 150, $black ); $text->draw( 160 , 80 ); open( IMAGE, ">pc1.png") || die "Couldn't open file: $!\n"; binmode( IMAGE ); print IMAGE $image->png(); close IMAGE;

In reply to Re: Creating an image with GD. by hossman
in thread Creating an image with GD. by DigitalKitty

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.