Basically I am doing a fread of a file and it is dumping out the raw data in my browser rather than showing me the actual image.

Googling around it appears I need to add header values before I call the function. I have tried that but still the data is being shown on screen rather than showing the actual image.

I have used readfile_chunked function in the past to help display video in a video player so I was hoping to use that function again to display other filetypes (images, txt,etc). Here is the readfile_chunked function.

function readfile_chunked($filename,$retbytes=true) {
   $chunksize = 1*(1024*1024); // how many bytes per chunk
   $buffer = '';
   $cnt =0;
   // $handle = fopen($filename, 'rb');
   $handle = fopen($filename, 'rb');
   if ($handle === false) {
       return false;
   }
   while (!feof($handle)) {
       $buffer = fread($handle, $chunksize);
       echo $buffer;
       ob_flush();
       flush();
       if ($retbytes) {
           $cnt += strlen($buffer);
       }
   }
       $status = fclose($handle);
   if ($retbytes && $status) {
       return $cnt; // return num. bytes delivered like readfile() does.
   }
   return $status;

}

This is what I'm doing...doing the header stuff then I call the function....

header("Content-type: $type");
header("Content-Length: $size");
header("Content-Transfer-Encoding: binary");
header("Content-Disposition: inline; filename=$uri");
header("Pragma: no-cache");
header("Expires: 0");


readfile_chunked($filename);

I have tried changing the content-disposition to inline or attachement but it doesn't display inline and it doesn't download for attachment either.

link|improve this question

Are you sending proper headers to inform a browser about Conent-Type you are sending? – dev-null-dweller Oct 8 '11 at 14:40
This is what I'm doing...doing the header stuff then I call the function....header("Content-type: image/jpg"); header("Content-Disposition: attachment; filename=$filename"); header("Pragma: no-cache"); header("Expires: 0"); readfile_chunked($filename); – user983223 Oct 8 '11 at 14:41
Post your code in question instead of comment, for more readability. You can try changing Content-Disposition to inline instead of attachment. – dev-null-dweller Oct 8 '11 at 14:47
I have changed it to inline and still displays the raw data. It should force download if it is attachment and it is not doing that either. – user983223 Oct 8 '11 at 15:17
@user983223 I suggest downloading a browser extension that displays raw header information and confirm the headers you are sending are being interpreted correctly. – Mike B Oct 8 '11 at 17:10
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.