Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re: Add text to image

by gmargo (Hermit)
on Jan 06, 2010 at 17:11 UTC ( [id://815949]=note: print w/replies, xml ) Need Help??


in reply to Add text to image

There's another problem, which you would see immediately if you use strict;.

Line 90 of your script has this line:

if ($start_height > 1 && $embed_height > 1 && $embed_width > 1) {

However, $embed_height and $embed_width are actually undefined (and treated as zero), since they are not the same variables defined on line 19 of your script, which are in a different scope:

my ($embed_width, $embed_height) = imgsize($opt{'i'});

New Year's Resolution: always use strict and warnings.

Update: If you fix the above by moving the variable scope, and if you follow BrowserUk's advice about overwriting your text with the image (just move the $wrapbox->draw(1, $start_height); line to after the image copy), then your program will work.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://815949]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (5)
As of 2024-04-24 12:52 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found