Help for this page

Select Code to Download


  1. or download this
    #plot data to a png graph
    # I have a temporary image because I end up splicing 
    ...
    open(IMG, ">./charts/$filename") or die $!;
    binmode IMG;
    print IMG $gdgraph->png;
    
  2. or download this
    print STDOUT $query->header(-type=>'image/png');
    binmode STDOUT;
    print STDOUT $image->png();