Thanks for the help ahead of time.
What I am trying to do is return a png file from a cgi script that is called by other files in the following way
<img src="http://www.xyz.com/cgi-bin/genImage.cgi">
The script works fine it drops the cookies it is suppose to and I know it reads the image file in correctly from some testing I have done but the calling file displays a broken image link instead of the picture. When i call the script directly it displays: ‰PNG
I cannot use the GD mod because I cannot get it installed on my server. Here it the code that returns the image does anyone have any ideas what is going on. Keep in mind I am positive it reads the image file and the file does exist. Thanks again
print "Expires: Fri, 30 Oct 1998 14:19:41 GMT\n";
print "Content-type:image/png\n\n";
open IMAGE, "e:/image1.png";
my ($image, $buff);
while(read IMAGE, $buff, 1024) {
$image .= $buff;
}
close IMAGE;
#binmode STDOUT; #tried this with no success as well
#print STDOUT $image; #tried this with no success as well
print $image;
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.