Code: Select all
$color = "#ff0000";
my $x = $image->Draw(fill=>'#000000',primitive=>'rectangle',points=>"0,0 $width,$height",antialias=>0);
$x && warn $x;
$x = $image->Draw(fill=>'#ffffff',primitive=>'rectangle',points=>"1,$whitestart $greywidth, $greyheight", antialias=>0);
$x && warn $x;
$greyheight -= $barheight;
$x = $image->Draw(fill=>'#eeeeee', primitive=>'rectangle',points=>"1,1 $greywidth,$barheight",antialias=>0);
$x && warn $x;
$x = $image->Draw(fill=>$color, primitive=>'rectangle',points=>"1,1 $barwidth,$barheight",antialias=>0);
$x && warn $x;