2 follow-up question if you're up for it:
1.) i turned on strict and was amazed at
all the crap i was doing wrong!
I also tried to incude the library 'warnings'
which failed (my perl is 5.005), is the
shebang -w switch a suitable substitute
for use warnings lib?
Will
#!/usr/bin/perl -w
work in place of
use warnings;
2.) Do you see anything fundamentally flawed with my
use of 'my' instead of local? The strict and -w switch
stopped outputing bad news to my error logs, so am i
okay now? Or is there something else i don't know about
to keep me on the right path to using perl correctly.
#!/usr/bin/perl -w
# this script outputs a gif
# set color, width, and height
use strict;
&printGIF("FF0000","33","10");
######################################
sub printGIF{
my $color = $_[0];
my $WH = sprintf("%lX",$_[1]);
my $HH = sprintf("%lX",$_[2]);
$color =~ s/(..)(..)(..)/$1\|$2\|$3/;
my($RH,$GH,$BH)=split(/\|/,$color);
print STDOUT "Content-type:image/gif\n\n";
my @gif=(
"47", "49", "46", "38", "37", "61", "$WH", "00",
"$HH", "00", "A1", "01", "00", "$RH", "$GH", "$BH",
"FF", "FF", "FF", "00", "00", "00", "00", "00",
"00", "21", "F9", "04", "05", "00", "00", "01",
"00", "2C", "00", "00", "00", "00", "$WH", "00",
"$HH", "00", "40", "02", "$HH", "84", "8F", "A9",
"CB", "ED", "0F", "A3", "9C", "B4", "DA", "8B",
"B3", "DE", "9C", "17", "00", "3B"
);
binmode (STDOUT); # if needed
foreach my $bit(@gif){
my $bita = hex($bit);
$bita = pack("C",$bita);
print STDOUT $bita;
}
}#################################### end printGIF
When i say correct use of perl i mean a clean running
program which could open and close millions of times
with no overflow problems.
jtrue
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.