At 06:44 PM 5/2/2001, you wrote:
>Can anyone help me understand why the following code is being ignored?
>
>$my_graph->set_x_label_font(GD::Font->Giant);
>
>Kevin

Need more code!  It's like saying "Why doesn't this print?"

print 'Print this!';

What I didn't show you was that earlier in my program I said:

close STDOUT;

While looking perfectly fine and innocuous, that print statement will not 
print a thing if it follows the close.  But who knows, maybe I 
'select'-ed   another filehandle and my output is going there, or any 
number of other typeglob and filehandle shenanigans.  Hang around Perl long 
enough, and the term 'normal' can kinda begin to loose it's meaning.  : 
)  But, anyway, according to the docs, you should be using gdGiantFont, not 
GD::Font->Giant.

Thank you for your time,

Sean.

Reply via email to