Hello Everybody,
I have a problem getting to display images on my browser window. When i try to invoke a sample script that i have created the image does not get displayed. Can anyone help me out please.
Here's the code that i am using
#!/usr/local/bin/perl5-new -w
use strict;
use GD::Graph::bars;
use CGI qw (param header);
my @data = (
["Jan-01","Feb-01","Mar-01", "Apr-01","May-01","Jun-01","Jul-01","Au
+g-01","Sep
-01"],[21,25,33,39,49,48,40,45,15]);
my $graph = new GD::Graph::bars;
$graph->set(
x_label => 'Anand',
y_label => 'Praveen',
title => 'Testing the Graph display',
bar_spacing => 10
)
or warn $graph->error;
open PNG, ">/kbase/anand/search/sw/cposupport/search/graph2.png";
binmode PNG;
print PNG $graph->plot(\@data)->png;
close PNG;
print header;
print "<HTML><BODY BGCOLOR=white>\n";
print "<IMG SRC=\"/kbase/anand/search/sw/cposupport/search/graph2.
+png\">";
print "</BODY></HTML>";
Edit: Added <code> tags, and some formatting.
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.