So for this line,
$image->Annotate( gravity =>'southeast',
font =>'Arial',
pointsize =>$fontsize,
fill =>$color,
x =>500,
y =>$y,
text =>$config_data[$i][0], " Information Last
+ Updated at: ", scalar localtime((stat($filename))[9]))";
It's the text section that's driving me crazy. Normally the text is supplied with single quotes, which as you've explained is not interpolated. But having the line like this isn't working either:
...
text =>"$config_data[$i][0] Information Last U
+pdated at: scalar localtime((stat($filename))[9]))";
Nor is any combination of double quotes, no quotes, or comma-separated values I can think of. I keep getting syntax errors. I'm sure this is simple but I just don't see it.
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.